Java API Tutorial - Java Socket.connect(SocketAddress endpoint, int timeout)








Syntax

Socket.connect(SocketAddress endpoint, int timeout) has the following syntax.

public void connect(SocketAddress endpoint,  int timeout)  throws IOException

Example

In the following code shows how to use Socket.connect(SocketAddress endpoint, int timeout) method.

import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.SocketAddress;
//from w ww. ja va 2 s  .  co m
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; // 2 seconds
    sock.connect(sockaddr, timeoutMs);
  }
}