欢迎来到皮皮网网站!

【chm排版软件源码】【东方财富资金博弈指标源码】【人事管理系统asp源码】javasocket源码分析

时间:2024-11-30 04:56:40 来源:香港资料源码

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();//客户端使用完流之后记得要关闭!!分析chm排版软件源码

        }

        //服务端

        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,源码东方财富资金博弈指标源码 0, buffer.length)))//这句错了,是分析人事管理系统asp源码不等于!

         {

          String str = new String(buffer,源码图书管理系统php源码 0, length);

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

         }

        }

更多相关资讯请点击【时尚】频道>>>