Categories Menu
Repair Center
24 hours online support we repair all types of laptops and relating to LCD screen,motherboard, DC adapter, power supplies and so much more! The shop reliable laptop repair in Ottawa area since 1995. Repair your laptop as easy as 1-2-3 !
computer_25
Services for your location
Java Get IP Address
print
report error
add to favorites
write a review
send to friends
suggest a topic
register

This section illustrates you how to obtain the IP Address of local host.

An IP address is either a 32-bit or 128-bit unsigned number used by the internet protocol. To store the host name resolutions, the class InetAddress is used. The method getLocalHost() returns the local host and the method getHostAddress() returns the IP address.

 

Here is the code of Java Get IP Address Example
import java.net.*;
import java.io.*;

public class GetIPAddress {
public static void main(String [] args) {
try {
InetAddress thisIp =InetAddress.getLocalHost();
System.out.println("IP:"+thisIp.getHostAddress());
}
catch(Exception e) {
e.printStackTrace();
}
}
}

Output will be displayed as:

C:\>javac GetIPAddress.java

C:\> java GetIPAddress
IP:192.168.10.205

Article Source: Network
Article Submitted On: 2009-06-04 10:47:08
This article has been viewed 795 time(s).
Other newly Articles from the Security and BIOS updates - Password Tips Category:
  1. Hp Bios Password Removal
  2. How to Hide My IP Address - Surf by Proxy
  3. How To Erase Dell Inspiron Hard-drive Password
  4. Learn to Hack Yahoo Password
  5. Java Get IP Address
  6. How to rename the Administrator and Guest Account in Windows Server 2003?
  7. How to secure/hide folders on personal computer?
  8. 12 ways how to reset the Windows administrator password – Windows 7, Vista,...
  9. Can I crack a password protected Microsoft Word file?
  10. Forgot the Administrator’s Password? – Change Domain Admin Password in...
  11. How to remove, crack, or break a forgotten Excel xls password
  12. Reset Dell BIOS Password
  13. How do I reset my Mac OS X admin root password?
  14. How do I remove an unknown password from a Word document?
  15. Preventing Password Hackers
Custom Search
Examples: HP,laptop Rapair,LCD,DC Backlight,Inverter,solder
Article Comment:Replies(0)Views
Name(required):        Email(required):  
Verify: key
Use the above information at your own risk
Loading ... Loading ...