Socket 中 InputStream / OutputStream 的奇怪行为

Strange behaviour of InputStream / OutputStream in Socket

一如既往,我在使用流和套接字时遇到了问题。

这是我的代码:

客户端

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() 吞下了我在文件名后发送的字节。现在我只使用普通的 InputStreamOutputStream.