Home Java Java-get-example Java example program to get IP address of own system



Java example program to get IP address of own system
Posted on: October 24, 2008 at 12:00 AM
An IP (Internet Protocol) address is a numerical unique identification number which is assigned to the devices participating in the network for communication.

Java example program to get IP address of own system

     

java get own IP address

An IP (Internet Protocol) address is a numerical unique identification number which is assigned to the devices participating in the network for communication. To get IP address of our own system in a java program we will be using InetAddress class.

In our following example program we are getting system's IP by getting the Host address of the local host.

InetAddress ownIP=InetAddress.getLocalHost(); gets the computer system's local host with IP address. Now we can get the IP address with this object by calling method getHostAddress() on the InetAddress object.

Here is the full example code of GetOwnIP.java as follows:

GetOwnIP.java

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

Output:

C:\javaexamples>javac GetOwnIP.java

C:\javaexamples>java GetOwnIP
IP of my system is := 192.168.10.112

Download Source Code

Related Tags for Java example program to get IP address of own system:
javaccomideclassnetworkiocommunicationgetsysteminternetipviuniquenumberusingintidaddressprotocoldevicenumericalifforaddworknumericprogramtoramicalsigneddevicescissieilsignidentificationdevartceinpartcalasmntparnetniccaddnetnicjadclestocemmeinternprocatsyswhichuniqsessetwcolatkisicellarrtvaunicatwssrithavstatiicaidentidenticapronomogrolo


More Tutorials from this section

Ask Questions?    Discuss: Java example program to get IP address of own system   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.