Showing posts with label ip. Show all posts
Showing posts with label ip. Show all posts
Tuesday, February 10, 2015
Java Program to Find IP Address
In this program we will find ip address by using InetAddress class present in java.net package. Method getLocalHost() prints the ip of your local machine while method getByName() prints the ip of a particular url.
Also Read: Java Program to Find Union of two Arrays
class FindIP
{
public static void main(String...s)throws Exception
{
System.out.println(InetAddress.getLocalHost());
System.out.println(InetAddress.getByName("www.google.com"));
}
}

Also Read: Java Program to Find Union of two Arrays
Program:-
import java.net.*;class FindIP
{
public static void main(String...s)throws Exception
{
System.out.println(InetAddress.getLocalHost());
System.out.println(InetAddress.getByName("www.google.com"));
}
}

Subscribe to:
Posts (Atom)