serverSocket和socket
服务器进程
ServerSocket(port); 在操作系统注册服务
serverSocket.accpe(); 从队列中获取socket,如果没有等待客户请求
获取socket
socket.close();
--------------------------------
客户端进程
Socket(host,port); 发起与服务器的请求
--------------------------------
socket方法
getInetAddress(); 远程服务端的IP地址
getPort(); 远程服务端的端口
getLocalAddress(); 本地客户端的IP地址
getLocalPort(); 本地客户端的端口
getInputStream(); 获得输入流
getOutputStream(); 获得输出流
For what it's worth,it's never too late.