首页 > 其他 > 详细

TCP发送数据、接收数据练习

时间:2020-05-07 22:48:15      阅读:66      评论:0      收藏:0      [点我收藏+]

客户端代码:

public class ClientDemo {
    public static void main(String[] args) throws IOException {
        //创建客户端的Socket对象
        Socket s = new Socket("192.168.50.76",12345);

        //获取输出流,写数据
        OutputStream os = s.getOutputStream();
        os.write("hello TCP 我来了".getBytes());

        //释放资源
        s.close();
    }
}

服务器端代码:

public class ServerDemo {
    public static void main(String[] args) throws IOException {
        //创建服务器端的Socket对象
        ServerSocket ss= new ServerSocket(12345);

        //监听客户端连接,返回一个Socket对象
        Socket s = ss.accept();

        //获取输入流,读数据,并把数据显示在控制台
        InputStream is = s.getInputStream();
        byte[] bys = new byte[1024];
        int len = is.read(bys);
        String data = new String(bys,0,len);
        System.out.println("数据是:"+data);

        //释放资源
        s.close();
        ss.close();
    }
}

服务端接受到数据的结果:

技术分享图片

TCP发送数据、接收数据练习

原文:https://www.cnblogs.com/pxy-1999/p/12845623.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!