zoukankan      html  css  js  c++  java
  • TCP/IP Socket发送接收图片demo

    一个实例通过client端和server端通讯

    客户端通过TCP/IP传输资源文件,比如图片,文字,音频,视频等.....

    服务端接受到文件存入本地磁盘,返回接受到:“收到来自于"+s.getInetAddress().getHostName()+"的信息”

    package com.ykw.net;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.InetAddress;
    import java.net.ServerSocket;
    import java.net.Socket;
    
    import org.junit.Test;
    
    //TCP编程例三:从客户端发送文件给服务端,服务端保存到本地。并返回"发送成功"给客户端。并关闭相应的连接
    public class TestTCP3 {
    
        @Test
        public void client()throws Exception{
            //1.创建Socket的对象
            Socket socket = new Socket(InetAddress.getByName("127.0.0.1"),9898);
            //2.从本地获取一个文件发送给服务端
            OutputStream os = socket.getOutputStream();
            FileInputStream fis = new FileInputStream(new File("1.jpg"));
            byte[] b = new byte[1024];
            int len;
            while((len=fis.read(b))!=-1){
                os.write(b,0,len);
            }
            socket.shutdownOutput();
            //3.接受来自于服务端的信息
            InputStream is = socket.getInputStream();
            byte[] b1 = new byte[1024];
            int len1;
            while((len1 = is.read(b1))!=-1){
                String str = new String(b1,0,len1);
                System.out.println(str);
            }
            //4.关闭相应的流和Socket对象
            is.close();
            os.close();
            fis.close();
            socket.close();
        }
        
        @Test
        public void server()throws Exception{
            //1.创建一个ServerSocket对象
            ServerSocket ss = new ServerSocket(9898);
            //2.调用其accept()方法,返回一个Socket对象
            Socket s = ss.accept();
            //3.将从客户端发送过来的信息保存到本地
            InputStream is = s.getInputStream();
            FileOutputStream fos = new FileOutputStream(new File("D://5.jpg"));
            byte[] b = new byte[1024];
            int len;
            while((len = is.read(b))!=-1){
                fos.write(b,0,len);
            }
            System.out.println("收到来自于"+s.getInetAddress().getHostAddress()+"的文件");
            //4.发送“接收成功”的信息反馈给客户端
            OutputStream os = s.getOutputStream();
            os.write("您发送的图片我已接收成功".getBytes());
            //5.关闭相应的流和Socket及ServerSocket的对象
            os.close();
            fos.close();
            is.close();
            s.close();
            ss.close();
        }
    }
  • 相关阅读:
    cdn与http缓存
    EntityFramework、Dapper vs 草根框架性能
    docker10件事
    TCP的阻塞和重传
    ngCookies模块
    Net Core- 配置组件
    获取synchronized锁中的阻塞队列中的线程是非公平的
    Java线程并发中常见的锁--自旋锁 偏向锁
    byte为什么要与上0xff(转)
    Tair是一个高性能,分布式,可扩展,高可靠的key/value结构存储系统(转)
  • 原文地址:https://www.cnblogs.com/tinyj/p/10122967.html
Copyright © 2011-2022 走看看