java program to find hostname from IP Address


Levels of difficulty: / perform operation:

java program

import java.net.InetAddress;
public class Main {
	public static void main(String[] argv) throws Exception {
		InetAddress addr = InetAddress.getByName("23.229.203.68");
		System.out.println("Host name is: "+addr.getHostName());
		System.out.println("Ip address is: "+ addr.getHostAddress());
	}
}

Output

Host name is: www.scanftree.com
Ip address is: 23.229.203.68