Showing posts with label Java IP Address. Show all posts
Showing posts with label Java IP Address. Show all posts

Sunday, 6 March 2016

Simple Java Program to print the IP Address

Java Program to find the IP Address

               The below listed simple Java program can print the IP Address ( Internet Protocol Address) of your Computer. 

Program:


// Java Code to display IP Address on screen

import java.net.InetAddress; 

class IPAddress
{
       public static void main(String args[]) throws Exception
      {
            System.out.println(InetAddress.getLocalHost());
      }
}

Output:


/192.168.1.103