Java Socket.getLocalAddress()
Syntax
Socket.getLocalAddress() has the following syntax.
public InetAddress getLocalAddress()
Example
In the following code shows how to use Socket.getLocalAddress() method.
/*w w w . ja v a 2 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);
System.out.println(client.getLocalAddress());
client.close();
}
}