Java Language Networking

30% OFF - 9th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY9

Syntax

  • new Socket("localhost", 1234); //Connects to a server at address "localhost" and port 1234
  • new SocketServer("localhost", 1234); //Creates a socket server that can listen for new sockets at address localhost and port 1234
  • socketServer.accept(); //Accepts a new Socket object which can be used to communicate with the client


Got any Java Language Question?