PPT Slide
public static void main(String arg[]){
if (arg.length == 0) showUsage();
InetAddress[] names = null;
names = InetAddress.getAllByName(arg[0]);
catch (UnknownHostException e){
System.err.println("Error: Unknown Host: " + arg[0]);
for (int i=0; i< names.length; i++)
("\nName: " + names[i].getHostName() +
"\nAddress: " + names[i].getHostAddress());
public static void showUsage(){
("Usage:\n\tnslookup <ip name>");