- import java.io.*;
- import java.net.*;
- class ServerDemo
- {
- public static void main(String[] args)throws Exception
- {
- ServerSocket ss = new ServerSocket(11000);
- Socket s = ss.accept();
- InputStream in = s.getInputStream();
- System.out.println(s.getInetAddress().getHostAddress());
- byte[] buf = new byte[1024];
- int len = in.read(buf);
- System.out.println(new String(buf,0,len));
- PrintWriter out = new PrintWriter(s.getOutputStream(),true);
- out.println("<font color='red' size='7'>客户端你好!</font>");
- }
- }
复制代码 |