Skip to content

Instantly share code, notes, and snippets.

@ashish173
Created October 8, 2013 21:32
Show Gist options
  • Save ashish173/6892106 to your computer and use it in GitHub Desktop.
Save ashish173/6892106 to your computer and use it in GitHub Desktop.
Network programming in java
try { // starts a server socket on port 4444
serverSocket = new ServerSocket(4444); // socket listens on 4444
}
catch(IOException e) {
System.err.println("Could not listen on port : 4444");
System.exit(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment