Java Socket(String host, int port) Constructor
Syntax
Socket(String host, int port) constructor from Socket has the following syntax.
public Socket(String host, int port) throws UnknownHostException , IOException
Example
In the following code shows how to use Socket.Socket(String host, int port) constructor.
/*w w w .j a va 2 s . co m*/
import java.net.Socket;
public class Main {
public static void main(String[] args) throws Exception {
Socket client = new Socket("google.com", 80);
System.out.println("Just connected to " + client.getRemoteSocketAddress());
client.close();
}
}