Java InetAddress class represents an IP address. The java.net.InetAddress class provides methods to get the IP of any host name for example www.kundansingh0510.blogspot.in, www.google.com, www.facebook.com etc.
Commonly used methods of InetAddress class
Method | Description |
---|---|
public static InetAddress getByName(String host) throws UnknownHostException | it returns the instance of InetAddress containing LocalHost IP and name. |
public static InetAddress getLocalHost() throws UnknownHostException | it returns the instance of InetAdddress containing local host name and address. |
public String getHostName() | it returns the host name of the IP address. |
public String getHostAddress() | it returns the IP address in string format. |
Example of Java InetAddress class
Let's see a simple example of InetAddress class to get ip address of
www.kundansingh0510.blogspot.in
website.
Output:
Host Name: www.kundansingh0510.blogspot.in IP Address: 206.51.231.148
No comments:
Post a Comment