Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用一个使用套接字与世界通信的 Java 库。我想获得对该套接字的引用,以便可以监视库正在发送和接收的数据。有没有办法挂钩 Java 的套接字系统,以便在我无法修改创建套接字的代码时监视套接字通信?
看看这个想法:
找出当前 Java VM 中打开了哪些网络套接字
我还没有测试过它,但它看起来很有趣,因为它提供了一种挂钩到 Java 的套接字创建过程的方法。