如何在 Java 中进行 ICMP 和跟踪路由
Java 没有 ICMP 和跟踪路由的原语。如何克服这个问题?基本上,我正在构建应该在 *nix 和 Windows 中运行的代码,并且需要一段可以在这两个平台上运行的代码。
Java does not have primitives for ICMPs and traceroute. How to overcome this? Basically I'm building code that should run in *nix and Windows, and need a piece of code that will run in both platforms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我今天写的用 Java“实现”跟踪路由命令的内容。我只在 Windows 中进行了测试,但它应该也可以在 Linux 中工作,尽管有几个可用于 Linux 的跟踪路由工具,因此很可能需要对这些程序的存在进行一些检查。
Here's what I wrote today to "implement" the trace route command in Java. I've only tested in windows but it should work in Linux as well although there are several traceroute tools available for Linux so most likely there need to be some checks for the existence of those programs.
您需要 jpcap 库(可能是 SourceForge jpcap 也可以工作)并使用 ICMPPacket 类来实现所需的功能。
这是使用 Java 跟踪路由实现 jpcap 库。
You'll need the jpcap library (maybe the SourceForge jpcap is working too) and use the ICMPPacket class to implement the desired functionality.
Here is the Java traceroute implementation using the jpcap library .