如何从Java枚举所有已启用的NIC卡的IP地址?

缺少解析输出ipconfig,没有人有100%的纯Java方法吗?

回答:

这很简单:

try {

InetAddress localhost = InetAddress.getLocalHost();

LOG.info(" IP Addr: " + localhost.getHostAddress());

// Just in case this host has multiple IP addresses....

InetAddress[] allMyIps = InetAddress.getAllByName(localhost.getCanonicalHostName());

if (allMyIps != null && allMyIps.length > 1) {

LOG.info(" Full list of IP addresses:");

for (int i = 0; i < allMyIps.length; i++) {

LOG.info(" " + allMyIps[i]);

}

}

} catch (UnknownHostException e) {

LOG.info(" (error retrieving server host name)");

}

try {

LOG.info("Full list of Network Interfaces:");

for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {

NetworkInterface intf = en.nextElement();

LOG.info(" " + intf.getName() + " " + intf.getDisplayName());

for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements(); ) {

LOG.info(" " + enumIpAddr.nextElement().toString());

}

}

} catch (SocketException e) {

LOG.info(" (error retrieving network interface list)");

}

以上是 如何从Java枚举所有已启用的NIC卡的IP地址? 的全部内容, 来源链接: utcz.com/qa/397910.html

回到顶部