Java Socket.connect(SocketAddress endpoint)
Syntax
Socket.connect(SocketAddress endpoint) has the following syntax.
public void connect(SocketAddress endpoint) throws IOException
Example
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;
//w ww. java 2 s. c om
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);
}
}