Socket.getInetAddress() has the following syntax.
public InetAddress getInetAddress()
In the following code shows how to use Socket.getInetAddress() method.
import java.net.Socket; // w w w . j a v a 2s .co m public class Main { public static void main(String[] args) throws Exception { Socket client = new Socket("google.com", 80); System.out.println(client.getInetAddress()); client.close(); } }
The code above generates the following result.