public class Main { public static void main(String[] argv) throws Exception {
InetAddress addr = InetAddress.getByName("java.sun.com"); int port = 80;
SocketAddress sockaddr = new InetSocketAddress(addr, port);
Socket sock = new Socket();
int timeoutMs = 2000;
sock.connect(sockaddr, timeoutMs);
}
}