Java Socket .setReuseAddress (boolean on)

Syntax

Socket.setReuseAddress(boolean on) has the following syntax.

public void setReuseAddress(boolean on)   throws SocketException

Example

In the following code shows how to use Socket.setReuseAddress(boolean on) method.


import java.net.Socket;
//from   w w  w  .  j a v a  2  s. c o  m
public class Main {
  public static void main(String[] args) throws Exception {
    Socket client = new Socket("google.com", 80);
    client.setReuseAddress(true);
    System.out.println(client.getReuseAddress());

    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