Home Java Thread Network Overview of Networking through JAVA,Find the Host name in reverse of given IP address



Overview of Networking through JAVA,Find the Host name in reverse of given IP address
Posted on: April 17, 2011 at 12:00 AM
This page discusses - Overview of Networking through JAVA,Find the Host name in reverse of given IP address

Find the Host name in reverse of given IP address

     

In this section you will learn to retrieve the information about the local host name using the getHostName() method. Here is an example that provides the usage of the getHostName() method in more detail.

Create a class "IPReverse". Call the InetAddress class and create a class object and pass the IP address in InetAddress.getByName() method. Now retrieve the Host name of the IP address what we are pass in getByName() method using the getHostName() method.

Here is the Code of the Example :

IPReverse.java

import java.net.*;

public class IPReverseTest {
  public static void main (String[] args) {
  try {
  InetAddress ia = InetAddress.getByName("192.168.10.105");
  System.out.println(ia.getHostName());
  }
  catch (Exception ex) {
  System.err.println("does not fine hostname");
  }
  }
}

The above example shows the host name of the IP address what ever we pass in the getByName() method. The output of the above example is as under, where the hostname shows as TEST1.

Here is the Output of the Example :

C:\roseindia>javac IPReverseTest.java

C:\roseindia>java IPReverseTest
TEST1

Download of this example.

 

Related Tags for Overview of Networking through JAVA,Find the Host name in reverse of given IP address:


More Tutorials from this section

Ask Questions?    Discuss: Overview of Networking through JAVA,Find the Host name in reverse of given IP address  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.