我正在编写自定义协议。我有一个命令名称,代码如下所示。
if(commandString.equals("PUT")){
File f = new File(currentFolder, "test.txt");
if(!f.exists())
f.createNewFile();
FileOutputStream fout = new FileOutputStream(f);
long size = 150;
long count = 0;
int bufferLeng = 0;
byte[] buffer = new byte[512];
while((bufferLeng = dis.read(buffer))>0) //dis is a data input stream.
{
count =+ bufferLeng;
fout.write(buffer);
}
System.out.println("All Good");
fout.flush();
fout.close();
}
客户端将此命令发送到服务器,如下所示pWriter.println("PUT");
。现在我运行它,它确实创建了文件test.txt
,但随后冻结,服务器不显示All Good消息。为什么会这样,什么是简单的解决方案?
服务器和客户端工作!!
谢谢
答案 0 :(得分:1)
服务器等待客户端关闭套接字。这将传输文件结尾,这将导致dis.read()
返回-1。
通常,这不是你想要的。解决方案是在数据之前发送文件大小,然后准确读取此数据量。
确保您的客户端在写完文件数据的最后一个字节后调用socket.flush()
,否则数据可能会卡在缓冲区中,这也会导致服务器挂起。
答案 1 :(得分:0)
也许消除dis.read(buffer)
并使用以下内容。
if(commandString.equals("PUT")){
File f = new File(currentFolder, "test.txt");
if(!f.exists())
f.createNewFile();
FileOutputStream fout = new FileOutputStream(f);
long size = 150;
long count = 0;
byte[] buffer = new byte[512];
int bufferLeng = buffer.length;
while(count < size && bufferLeng>0) //dis is a data input stream.
{
fout.write(buffer);
count =+ bufferLeng;
}
System.out.println("All Good");
fout.flush();
fout.close();
}
这应该有效