Java Socket.getInetAddress()

Syntax

Socket.getInetAddress() has the following syntax.

public InetAddress getInetAddress()

Example

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


import java.net.Socket;
//from  w w w .ja va2  s .c  om
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();
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder