importjava.io.*;importjava.net.*;classTCPMultiServer{publicstaticvoidmain(Stringargv[])throwsException{ServerSocketwelcomeSocket=newServerSocket(6789);while(true){SocketconnectionSocket=welcomeSocket.accept();/* Creazione di un thread e passaggio della established socket */TCPServerThreadtheThread=newTCPServerThread(connectionSocket);/* Avvio del thread */theThread.start();}}}