java中是否可以获取网关/路由器ip
可能的重复:
如何确定我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来会做你想做的事情。您真正想做的是执行 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.