评论

收藏

[Java] JavaTCP上传图片代码实例

编程语言 编程语言 发布于:2021-10-05 16:31 | 阅读数:452 | 评论:0

今天小编就为大家分享一篇关于JavaTCP上传图片代码实例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
1.客户端代码
public class uploadpicclient {
 public static void main(string[] args) throws unknownhostexception, ioexception {
 // todo auto-generated method stub
 //1,创建客户端socket
 socket s = new socket("localhost",10088);
 //2,读取客户端要上传的图片文件
 fileinputstream fis = new fileinputstream("d:\\workspace\\day2019.1.17\\lanjing.jpg");
 //3,获取socket输出流,将读到的图片的数据发送到服务端
 outputstream out = s.getoutputstream();
 byte[] buf = new byte[1021];
 int len =0;
 while((len=fis.read(buf))!=-1){
  out.write(buf,0,len);
 }
 //告诉服务端说:这边的数据发送完毕让服务端停止读取
 s.shutdownoutput();
 //读取服务端发回的内容
 inputstream in = s.getinputstream();
 byte[] bufin = new byte[1024];
 int lenin = in.read(buf);
 string text = new string (buf,0,lenin);
 system.out.println(text);
 //关闭资源
 fis.close();
 s.close();
 }
}
2.服务端代码
public class uploadpicsever {
public static void main(string[] args) throws ioexception {
 // todo auto-generated method stub
 //创建tcp的socket服务端
 serversocket ss = new serversocket(10088);
 //获取客户端
 socket s = ss.accept();
 string ip = s.getinetaddress().gethostaddress();
 system.out.println(ip+".....connected");
 //读取客户端发来的数据
 inputstream in = s.getinputstream();
 //将读取到的数据存储到一个文件中。
 file dir = new file("d:\\workspace\\day2019.1.17");
 if(!dir.exists()){
 dir.mkdirs();
 }
 file file = new file(dir,"blue.jpg");
 fileoutputstream fos = new fileoutputstream(file);
 byte[] buf = new byte[1024];
 int len = 0;
 while ((len=in.read(buf))!=-1){
 fos.write(buf,0,len);
 }
 //获取socket输出流,将上传成功字样发送给客户端
 outputstream out = s.getoutputstream();
 out.write("上传成功".getbytes());
 fos.close();
 s.close();
 ss.close();
}
上传后和上传前的图片:
DSC0000.png

总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对CodeAE代码之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/lzq1326253299/article/details/86528524

关注下面的标签,发现更多相似文章