jpcap
From: Damien Legrand (damien.legrand_at_ch-cesame-angers.fr)
Date: 01/13/04
- Previous message: Anthony Borla: "Re: Question about static methods"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 13 Jan 2004 05:40:53 -0800
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());
}
}
- Previous message: Anthony Borla: "Re: Question about static methods"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|