获取本机IP(适用于Linux系统)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取本机IP(适用于Linux系统)相关的知识,希望对你有一定的参考价值。

获取本机IP(适用于Linux系统)
/**
* @desc 获取本机IP(适用于Linux系统)
* @return Ip
*/
public static String getLocalIP() {
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();
}
return ip;
}
 
原创

以上是关于获取本机IP(适用于Linux系统)的主要内容,如果未能解决你的问题,请参考以下文章

Linux 项目 shell 自动获取报告本机IP | 通过shell 自动获取报告本机IP

linux 系统获取当前登陆ip地址的几种方法

03 Linux系统组成和获取命令帮助

linux 获取本机MAC/IP地址的方法

linux通过Python获取本机的ip,mac,网关,子网掩码,网卡名

虚拟机下的LINUX系统,应该怎样配置IP呢?