如何在Java中找到所有本地绑定的IP地址?

发布于 2024-08-13 06:33:57 字数 129 浏览 7 评论 0原文

我想要所有本地绑定的 IP 地址,基本上是 java.net.InetAddress 数组。我知道我可以使用主机名调用 InetAddress.getAllByName(),但我想知道是否有一种更直接的方法,不涉及 DNS 和/或主机名的知识。

I would like to have all locally bound IP addresses, basically an array of java.net.InetAddress. I know I can call InetAddress.getAllByName() with the host name, but I was wondering if there is a more direct way that doesn't involve DNS and/or knowledge of the host name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仙女 2024-08-20 06:33:57

java.net.NetworkInterface.getNetworkInterfaces() 将为您提供可用网络接口的枚举。然后,您可以在每个 NetworkInterface 上调用 getInetAddresses() 来获取绑定到该接口的地址。

java.net.NetworkInterface.getNetworkInterfaces() will give you an enumeration of the available network interfaces. You can then invoke getInetAddresses() on each NetworkInterface to get the addresses bound to this interface.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文