Skip to content

Instantly share code, notes, and snippets.

@BalicantaYao
Created May 7, 2017 09:39
Show Gist options
  • Save BalicantaYao/56b816e674780b96be69e4ab14806f69 to your computer and use it in GitHub Desktop.
Save BalicantaYao/56b816e674780b96be69e4ab14806f69 to your computer and use it in GitHub Desktop.
public static void main (String args[]){
ServerSocket serverSocket = new ServerSocket(199);
try{
Socket socket = serverSocket.accept();
}
finally{
socket.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment