You are on page 1of 1

//Aim:-Write a program to Display all IP Addresseses of specific URL.

import java.net.*;
import java.io.*;
class Badal
{
public static void main(Sting args[])
{
try
{
InetAddress ipad=InetAddress.getByName("www.google.com")
;
System.out.println("Local Host is: "+ipad);
}
catch(UnknownHostException e)
{
System.out.println("Not Found");
}
}
}

You might also like