黑马程序员技术交流社区

标题: 网络编程之socket [打印本页]

作者: Robber    时间: 2016-2-19 18:45
标题: 网络编程之socket
package ch25;   

import java.io.*;
   import java.net.*;

   public class HelloServer
   {
      public static void main(String[] args) throws IOException
      {
         ServerSocket serversocket=null;
         PrintWriter out=null;
         try
         {
            // 在下面实例化了一个服务器端的Socket连接
            serversocket=new ServerSocket(9999);
         }
         catch(IOException e)
         {
            System.err.println("Could not listen on port:9999.");
            System.exit(1);
         }
         Socket clientsocket=null;
         try
         {
            // accept()方法用来监听客户端的连接
            clientsocket=serversocket.accept();
         }
         catch(IOException e)
         {
            System.err.println("Accept failed.");
            System.exit(1);
         }
         out=new PrintWriter(clientsocket.getOutputStream(),true);
         out.println("hello world!");
         clientsocket.close();
         serversocket.close();
      }
   }







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2