java中是否可以获取网关/路由器ip

发布于 2024-12-07 01:05:39 字数 290 浏览 0 评论 0原文

可能的重复:
如何确定我的 IP Java 中的路由器/网关?

我想在 Java 中获取路由器/网关 ip。我需要一些更标准的东西,就像我可以使用的任何库一样。我不想卷曲任何网站并获取 IP。

谢谢 巴拉吉

Possible Duplicate:
How can I determine the IP of my router/gateway in Java?

I would like to get router/gateway ip in java. I need some thing which is more standard like any libraries i can use. I do not want to curl any site and get the ip.

Thank you
Balaji

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

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

发布评论

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

评论(1

独﹏钓一江月 2024-12-14 01:05:39

这看起来会做你想做的事情。您真正想做的是执行 traceroute,它会依次发现您和目标机器。由于您实际上只想要下一跳,因此任何外部目的地都适合您的情况。

请注意,如果您知道它将在什么操作系统上运行,您可能可以更轻松、更快地完成此操作。例如,您可以从 Linux 下的 /etc 中的文件中获取您想要的信息,或者通过执行 ifconfig 来获取您想要的信息。

This looks like it will do what you want. What you really want to do is do a traceroute, which discovers each networking device in turn between you and a destination machine. Since you really only want the next hop, any outside destination will do in your case.

Note that if you know what OS this will be running on, you may be able to do this much easier and faster. For instance, you may be able to get the information you want out of the files in /etc under Linux, or by executing ifconfig.

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