Perform NSLookup with the InetAddress class
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Main {
/*
* This method performs a NS Lookup
*/
public void performNSLookup() {
try {
InetAddress inetHost = InetAddress.getByName("cnn.com");
String hostName = inetHost.getHostName();
System.out.println("The host name was: " + hostName);
System.out.println("The hosts IP address is: " + inetHost.getHostAddress());
} catch(UnknownHostException ex) {
System.out.println("Unrecognized host");
}
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
new Main().performNSLookup();
}
}
0 comments: