public class dfa {
public static void main(String[] args) throws IOException {
ServerSocket ss = new ServerSocket(10000);
Socket s = ss.accept();
InetAddress ia = s.getInetAddress();
String ip = ia.getHostAddress();
System.out.println("connect:"+ip);
PrintWriter out = new PrintWriter(s.getOutputStream(),true);