我有这个文件,我通过套接字从服务器发送到客户端。然而,当我尝试在客户端中重新加载前159个第一个字节时,它给出的结果小于我要求服务器在原始文件中读取相同数量的结果,但是当我打印出我在两侧读取的内容的长度时它是相同的,但一个几乎是另一个的2/3!可能是什么问题呢?我已经replaceAll("(\\r|\\n|\\s)","")
取消任何空间或制表但仍然没有变化。
有什么建议?
这是我写文件的代码:
FileOutputStream writer = new FileOutputStream("Splits.txt");
String output= null;
StringBuilder sb2 = new StringBuilder();
for (int i =0; i < MainClass.NUM_OF_SPLITS ; i++){
StringBuilder sb1 = new StringBuilder();
for (String s : MainClass.allSplits.get(i).blocks)
{sb2.append(s);}
sb1.append(sb2);}
output = sb2.toString().replaceAll("(\\r|\\n|\\s)", "");
writer.write(output.getBytes(Charset.forName("ISO-8859-1")));
writer.close();
在这里我阅读文件:
FileInputStream fis = new FileInputStream("Splits.txt");
InputStreamReader reader = new InputStreamReader(fis,Charset.forName("ISO-8859-1"));
for(int i = 0; i < splitsNum; i++) {
char[] buf = new char[159]; //param
int count = reader.read(buf);
String h=String.valueOf(buf, 0, count).replaceAll("(\\r|\\n||\\s)","");
System.out.println( h);
}
答案 0 :(得分:0)
您需要循环,直到您已阅读所需的所有数据:
char[] buf = new char[159];
int charsRead = 0;
while (charsRead < buf.length) {
int count = reader.read(buf, charsRead, buf.length - charsRead);
if (count < 0) {
throw new EOFException();
}
charsRead += count;
}
// Right, now you know you've actually read 159 characters...