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

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”));
}
}

Java Program to Find IP Address

5 thoughts on “Java Program to Find IP Address”

Leave a Comment

Your email address will not be published. Required fields are marked *