0

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

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();  

那么如何让客户端分块发送我的文件呢?提前致谢。

4

1 回答 1

2

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

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

并在服务器上重新组装。

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

于 2012-07-12T11:39:59.517 回答