364,083 Members | 5987 Browsing Online
Community for Developers & IT Professionals
Bytes IT Community

jpcap

Damien Legrand
P: n/a
Damien Legrand
i use jpcap classe for captured packet but i don't arrive to save the
packets in a file with the method jpcapwriter...

how help me?

thanks.

my code is that :

import jpcap.*;

class Tcpdump implements JpcapHandler
{
public void handlePacket(Packet packet){
System.out.println(packet);
}
public static void main(String[] args) throws
java.io.IOException{
String[] lists=Jpcap.getDeviceDescription();
System.out.println("Start capturing on "+lists[0]);
Jpcap jpcap=Jpcap.openDevice(Jpcap.getDeviceList()[0],1000,false,20);
//jpcap.setFilter("host 132.147.47.98",true);
jpcap.loopPacket(-1,new Tcpdump());
}
}
Jul 17 '05 #1
Share this question for a faster answer!
Share on Google+

Post your reply

Help answer this question



Didn't find the answer to your Java question?

You can also browse similar questions: Java jpcap setfilter