用JAVA程序獲取IP地址
發(fā)布時間:2008-08-21 閱讀數(shù): 次 來源:網(wǎng)樂原科技
在基于TCP/IP互聯(lián)時,經(jīng)常會需要查詢自己主機(jī)的IP地址和www服務(wù)器的IP地址。雖然,我們可以使用IPCONFIG和PING等命令進(jìn)行IP地址查詢,但是如果在應(yīng)用程序或APPLET中使用此命令會破壞我們應(yīng)用程序界面,使其很不雅觀。但使用JAVA 做一個簡單的程序可以直接查詢自己主機(jī)的IP地址和www服務(wù)器的IP地址。
如下:
// 文件名為 NetTool.java
(注意:在JAVA 語言中大小寫敏感)
import java.net.*;
public class NetTool{ InetAddress myIPaddress=null;
InetAddress myServer=null;
public static void main( String args[]){
NetTool mytool;
mytool=new NetTool();
System.out.println(\"Your host IP is: \" + mytool.getMyIP());
System.out.println(\"The Server IP is :\"
+mytool.getServerIP());
}
//取得LOCALHOST的IP地址
public InetAddress getMyIP() {
try { myIPaddress=InetAddress.getLocalHost();}
catch (UnknownHostException e) {}
return (myIPaddress); }
//取得 www.abc.com 的IP地址
public InetAddress getServerIP(){
try {myServer=InetAddress.getByName(
\"www.abc.com\");}
catch (UnknownHostException e) {}
return (myServer); } }
由于JAVA語言的跨平臺特性,以上程序編譯后可直接在任何裝有JVM系統(tǒng)的機(jī)器上運(yùn)行。以上程序旨在拋磚引玉,讀者可將上述代碼稍加變換轉(zhuǎn)化成APPLET加到你的homepage中,或?qū)⒌刂凡樵兘Y(jié)果寫到一個文件中去,建立自己本地的hosts文件。