3839404142434445464748
public void Listen() { try { while (listening){ new Thread(new MessageIn(ss.accept())).start(); } } catch (IOException ie) { ie.printStackTrace(); } }