Why applet couldn't be displayed while including below contents in init()?
Why applet couldn't be displayed while including below contents in init()?
ServerSocket ss = null;
int port = 4000;
try{
ss = new ServerSocket (port); //create a server socket at port 4000
client = ss.accept(); //waiting for a client to connect
System.out.println("Accepted connection from " +
client.getInetAddress() + " " +
client.getLocalPort() + " " +
client.getPort());
Five.ChatStart(); //execute run() method
}catch(IOException e){}

