我正在制作一个客户端-服务器。我已经知道服务器可以发送硬编码文件,但不能发送指定的客户端。我将只需要发送文本文件。据我了解:客户端首先发送文件名,然后服务器发送它,没什么复杂的,但是我遇到了各种错误,这段代码是连接重置/套接字关闭错误。主要问题是,没有太多时间研究网络。
我会很感激我能得到的任何帮助。
编辑。 我找到了解决方法,关闭流会导致套接字关闭,这是为什么呢?它不应该发生,不是吗?
服务器端:
InputStream sin=newCon.getInputStream();
DataInputStream sdata=new DataInputStream(sin);
location=sdata.readUTF();
//sdata.close();
//sin.close();
File toSend=new File(location);
byte[] array=new byte[(int)toSend.length()];
FileInputStream fromFile=new FileInputStream(toSend);
BufferedInputStream toBuffer=new BufferedInputStream(fromFile);
toBuffer.read(array,0,array.length);
OutputStream out=newCon.getOutputStream(); //Socket-closed...
out.write(array,0,array.length);
out.flush();
toBuffer.close();
newCon.close();
客户端:
int bytesRead;
server=new Socket(host,port);
OutputStream sout=server.getOutputStream();
DataOutputStream sdata=new DataOutputStream(sout);
sdata.writeUTF(interestFile);
//sdata.close();
//sout.close();
InputStream in=server.getInputStream(); //socket closed..
OutputStream out=new FileOutputStream("data.txt");
byte[] buffer=new byte[1024];
while((bytesRead=in.read(buffer))!=-1)
{
out.write(buffer,0,bytesRead);
}
out.close();
server.close();