本站提供最佳2019商城源码服务,欢迎转载和分享。

【下载linux源码】【趣味php源码】【花椒TV源码】javasocket源码分析

2024-12-29 04:21:58 来源:漫画源码怎么安装 分类:百科

1.javasocketԴ?源码????

javasocket源码分析

javasocketԴ?????

       //客户端

       public static void main(String[] args) throws Exception

        {

         Socket socket = new Socket(".0.0.1", );

         

         OutputStream os = socket.getOutputStream();

         

         os.write("hello world".getBytes());

         os.close();//客户端使用完流之后记得要关闭!!分析下载linux源码

        }

        //服务端

        public static void main(String[] args) throws Exception

        {

         ServerSocket ss = new ServerSocket();

         Socket socket = ss.accept();

         InputStream is = socket.getInputStream();

         byte[] buffer = new byte[];

         int length = 0;

         while (-1 != (length = is.read(buffer,源码趣味php源码 0, buffer.length)))//这句错了,是分析花椒TV源码不等于!

         {

          String str = new String(buffer,源码webrtc源码学习 0, length);

          System.out.println("welcome "+str);

         }

        }

【本文网址:http://abssuliao.net/html/47f414695806.html 欢迎转载】

copyright © 2016 powered by 皮皮网   sitemap