我试图找出本地计算机当前正在使用哪个网络接口。我可以使用NetworkInterface.getNetworkInterfaces()
来在计算机上安装所有接口,但是我无法确定计算机使用哪个接口访问Internet。
我试图过滤掉无效和回送接口,然后打印其余接口:
Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
while (interfaces.hasMoreElements()) {
NetworkInterface face = interfaces.nextElement();
if (face.isLoopback() || !face.isUp()) {
continue;
}
System.out.println(face.getDisplayName());
}
结果如下:
Qualcomm Atheros AR9485 802.11b/g/n WiFi Adapter
Microsoft ISATAP Adapter #5
如您所见,列出了两个接口。我的计算机当前用于连接互联网的是Qualcomm Atheros适配器。我可以仅测试接口名称以查看它是否是Qualcomm适配器,但这只有在我使用另一个Qualcomm适配器建立以太网连接后才能起作用。
我在超级用户上看到一个similar question,它根据指标确定了路由。
在Java中是否有一种干净的方法?
答案 0 :(得分:0)
我发现了一种简洁的方法:
public static NetworkInterface getCurrentInterface() throws SocketException, UnknownHostException {
Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
InetAddress myAddr = InetAddress.getLocalHost();
while (interfaces.hasMoreElements()) {
NetworkInterface face = interfaces.nextElement();
if (Collections.list(face.getInetAddresses()).contains(myAddr))
return face;
}
return null;
}
如您所见,我只是简单地遍历网络接口并检查每个接口,以查看本地主机是否已绑定到该接口。到目前为止,这种方法我还没有遇到任何问题。