I'm looking for a fast way to parse PCAP file packets.
I'm currently using jNetPcap like so:
Pcap pcap = Pcap.openOffline(file, errbuf);
pcap.loop(10, jpacketHandler, "jNetPcap rocks!");
But it is pretty slow, is there any other good Java libraries that can parse PCAP files?