Bill
Bill

Reputation: 57

Network packet capture in Java without libpcap

I was wondering if there are any libraries useful for network packet capture and analysis that do not build off of libpcap? I'm trying to develop a platform-independent application. Thanks

Upvotes: 1

Views: 830

Answers (1)

Dan
Dan

Reputation: 876

This still uses libpcap but does so with JNI, so its still somewhat portable. Your processing code will be completely portable but is reliant on the JNI calls to interface with the actual network adapter/packets.

http://jnetpcap.com/download

Upvotes: 1

Related Questions