我得到了这个客户端应用程序,可以将我的文件完全发送到服务器。但是我希望它以大块发送文件。这是我的客户代码:

byte[] fileLength = new byte[(int) file.length()];

        FileInputStream fis = new FileInputStream(file);
        BufferedInputStream bis = new BufferedInputStream(fis);

        DataInputStream dis = new DataInputStream(bis);
        dis.readFully(fileLength, 0, fileLength.length);

        OutputStream os = socket.getOutputStream();

        //Sending size of file.
        DataOutputStream dos = new DataOutputStream(os);
        dos.writeLong(fileLength.length);
        dos.write(fileLength, 0, fileLength.length);
        dos.flush();

        socket.close();


那么,如何使客户端分块发送文件?提前致谢。

最佳答案

尝试部分地从客户端发送文件,例如

int count;
byte[] buffer = new byte[8192];
while ((count = in.read(buffer)) > 0)
{
  out.write(buffer, 0, count);
}


并在服务器上重新组装。

Apache Commons支持流式传输,因此可能会有所帮助。

07-24 19:06