Topic: 用JAVA程序取得IP地址 |
Print this page |
1.用JAVA程序取得IP地址 | Copy to clipboard |
Posted by: chengbd Posted on: 2004-06-28 12:20 在TCP/IP 互联网时,经常会需要查询自己主机的IP地址和www服务器的IP地址。虽然,我们可以使用IPCONFIG 和PING 进行IP地址查询,但是如果在应用程序或APPLET中使用此命令回破坏我们应用程序界面。 ---- 为此本人使用JAVA 做了一个简单的程序可以直接查询自己主机的IP地址和www服务器的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系统的机器上运行。以上程序旨在抛砖引玉,读者可将上述代码稍加变换转化成APPLET加到你的homepage中,或将地址查询结果写到一个文件中去,建立自己本地的hosts文件。 |
2.Re:用JAVA程序取得IP地址 [Re: chengbd] | Copy to clipboard |
Posted by: 你要飞 Posted on: 2004-08-04 20:11 很有用啊。谢了 |
3.Re:用JAVA程序取得IP地址 [Re: chengbd] | Copy to clipboard |
Posted by: yericl0424 Posted on: 2004-08-04 21:38 谢拉,很有用 啊 |
4.Re:用JAVA程序取得IP地址 [Re: chengbd] | Copy to clipboard |
Posted by: leihongfei Posted on: 2004-09-07 22:13 怎么获得我们在互连网的ip 不是我们的局域网的ip |
5.Re:用JAVA程序取得IP地址 [Re: leihongfei] | Copy to clipboard |
Posted by: why Posted on: 2004-09-07 22:25 leihongfei wrote: 请问局域网是甚么? 这可能是DNS的问题吧。 chengbd,集腋成裘,又一分了。 谢谢。 |
6.Re:用JAVA程序取得IP地址 [Re: chengbd] | Copy to clipboard |
Posted by: 酷爱java Posted on: 2004-09-10 23:27 你好! 你的程序很有用.在这里先谢谢了.我想查询网络IP最好是改成一个接受输入的网址名的字符串不是好一点吗?省的要在程序里面改地址 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |