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 v a2 s . co m*/
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();
}
}