Socket.connect(SocketAddress endpoint) has the following syntax.
public void connect(SocketAddress endpoint) throws IOException
In the following code shows how to use Socket.connect(SocketAddress endpoint) method.
import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketAddress; //from www .j a va 2 s . com 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(); sock.connect(sockaddr); } }