我总是遇到流和套接字的问题。
下面是我的代码:
bitOut.write((f.getName() + "n").getBytes());
//System.out.println(f.length()); // <- This is the odd part.
bitOut.write((int) f.length());
bitOut.flush();
fileIn = new FileInputStream(f);
byte buffer[] = new byte[BUFFER_SIZE];
int len;
while ((len = fileIn.read(buffer)) != -1) {
bitOut.write(buffer, 0, len);
}
fileIn.close();
服务器file = sc.nextLine();
int fileSize = bitIn.read(); // <- Here is my error!
System.out.println(file + ", " + fileSize);
fileOut = new FileOutputStream(folder + file);
byte buffer[] = new byte[BUFFER_SIZE];
int len;
while (fileSize > 0 && (len = bitIn.read(buffer)) != -1) {
fileOut.write(buffer, 0, len);
fileSize -= len;
System.out.println(fileSize);
}
fileOut.close();
如果我取消注释客户端代码中的System.out.println(f.length())
,服务器总是在fileSize
中获得正确的值。但是如果我留下注释,fileSize
通常是f.length()
之后应该发送的数据中的一个字节。一方面,这很有趣,因为几乎只有当我在客户机中打印出文件大小时,我才会在服务器上收到正确的结果。另一方面,我不知道如何修复它
好了,我解决了。这与扫描器有关,它的方法nextLine()
吞下了我在文件名后发送的字节。现在我只是使用正常的InputStream
和OutputStream
。