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”));
}
}
not working?
what problem you are getting?
nice blog
It’s a plauesre to find someone who can identify the issues so clearly
hi bro, how to find network speed of individual system through the java…?