Java API Tutorial - Java Socket.getReuseAddress()








Syntax

Socket.getReuseAddress() has the following syntax.

public boolean getReuseAddress()   throws SocketException

Example

In the following code shows how to use Socket.getReuseAddress() method.

//from   w ww.  j  a  va2 s. c om
import java.net.Socket;

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.