在百度搜索“JAVA获取本机IP地址”,基本上搜到比较普遍的说法是().getHostAddress(),实际上这段代码在复杂环境下是不准的。IP地址在现在的网络环境更加复杂了,比如有Lan,WIFI,蓝牙热点,虚拟机网卡...
即存在很多的网络接口(network interfaces),每个网络接口就包含一个IP地址,并不是所有的IP地址能被外部或局域网访问,比如说虚拟机网卡地址等等。
直接上代码
private static InetAddress getLocalHostLANAddress() throws UnknownHostException {
try {
InetAddress candidateAddress = null;
// 遍历所有的网络接口
for (Enumeration ifaces = (); ();) {
NetworkInterface iface = (NetworkInterface) ();
// 在所有的接口下再遍历IP
for (Enumeration inetAddrs = (); ();) {
InetAddress inetAddr = (InetAddress) ();
if (!()) {// 排除loopback类型地址
if (()) {
// 如果是site-local地址,就是它了
return inetAddr;
} else if (candidateAddress == null) {
// site-local类型的地址未被发现,先记录候选地址
candidateAddress = inetAddr;
}
}
}
}
if (candidateAddress != null) {
return candidateAddress;
}
// 如果没有发现 non-loopback地址.只能用最次选的方案
InetAddress jdkSuppliedAddress = ();
if (jdkSuppliedAddress == null) {
throw new UnknownHostException("The JDK () method unexpectedly returned null.");
}
return jdkSuppliedAddress;
} catch (Exception e) {
UnknownHostException unknownHostException = new UnknownHostException(
"Failed to determine LAN address: " + e);
(e);
throw unknownHostException;
}
}
- 属于"loopback" 地址,即只能你自己的本机可见,就是本机地址,比较常见的有127.0.0.1;
- 192. 属于private 私有地址(site local address),属于本地组织内部访问,只能在本地局域网可见。同样、从172. 到 172.都是私有地址,也是属于组织内部访问;
- 169. 属于连接本地地址(link local IP),在单独网段可用
- 从 到 属于组播地址
- 比较特殊的255.255.255.255 属于广播地址
- 除此之外的地址就是点对点的可用的公开IPv4地址