Java API Tutorial - 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.  ja v  a 2s.  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();
  }
}

The code above generates the following result.