Java Socket(String host, int port, boolean stream) Constructor

Syntax

Socket(String host, int port, boolean stream) constructor from Socket has the following syntax.

@Deprecated public Socket(String host,     int port,     boolean stream)  throws IOException

Example

In the following code shows how to use Socket.Socket(String host, int port, boolean stream) constructor.


/*ww  w.j  a  v a  2s .c o m*/
import java.net.Socket;

public class Main {
  public static void main(String[] args) throws Exception {
    Socket client = new Socket("google.com", 80,true);

    System.out.println("Just connected to " + client.getRemoteSocketAddress());

    client.close();
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder