码迷,mamicode.com
首页 > 编程语言 > 详细

java 获取服务器 linux 服务器IP 信息

时间:2014-11-26 18:15:02      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:io   os   java   on   ad   linux   as   服务器   res   

public String getUnixLocalIp() {
String ip = "";
try {
Enumeration<?> e1 = (Enumeration<?>) NetworkInterface.getNetworkInterfaces();
while (e1.hasMoreElements()) {
NetworkInterface ni = (NetworkInterface) e1.nextElement();
if (!ni.getName().equals("eth0")) {
continue;
} else {
Enumeration<?> e2 = ni.getInetAddresses();
while (e2.hasMoreElements()) {
InetAddress ia = (InetAddress) e2.nextElement();
if (ia instanceof Inet6Address)
continue;
ip = ia.getHostAddress();
}
break;
}
}
} catch (SocketException e) {
e.printStackTrace();
System.exit(-1);
}
return ip;
}

java 获取服务器 linux 服务器IP 信息

标签:io   os   java   on   ad   linux   as   服务器   res   

原文地址:http://www.cnblogs.com/Snowflake/p/4123563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!