Java Program to find the IP address of the Machine

Here is a simple Java Program to find the IP address of the Machine.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
import java.util.*;
import java.lang.*;
import java.net.*;
 
public class GetOwnIP
{
    public static void main(String args[]) {
        try{
            InetAddress ownIP=InetAddress.getLocalHost();
            System.out.println("IP of my system is := "+ownIP.getHostAddress());
        }catch (Exception e){
            System.out.println("Exception caught ="+e.getMessage());
        }
    }
}
Arun

One thought on “Java Program to find the IP address of the Machine

Leave a Reply

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

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in