前言
java是跨平台语言一般来说对网络的操作都在IP层以上也就是只能对tcp/udp进行操作当然也可以设置部分tcp/udp的option如果想再往IP层或者数据link层操作就无能为力了必须依靠jni使用本地OS的socket部分接口很幸运我在知道有winpcap的时候同时也知道有人在开发jpcap此包可以方便的操作网络底层应用协议以下详细描述
实施步骤
下载需要的包上可以下到最新的jpcap你只需要把lib中的dll文件拷贝到jre的bin目录同时lib中的jar文件拷贝到jre中的lib/ext目录下就安装完整当然你可以使用exe安装包进行安装这样会更加的简单
编码你可以使用任何你喜欢的ide工具但是必须把jpcapjar加到classpath中否则无法编译通过icmp有很多类型当前仅用echo类型为例也就是我们通过用的ping工具所产生的网络行为以下为代码详细
importInetAddress;
importjpcapJpcapCaptor;
importjpcapJpcapSender;
importjpcapNetworkInterface;
importjpcappacketEthernetPacket;
importjpcappacketICMPPacket;
importjpcappacketIPPacket;
classICMP
{
publicstaticvoidmain(String[]args)throwsjavaioIOException{
NetworkInterface[]devices=JpcapCaptorgetDeviceList();
if(argslength<){
Systemoutprintln(Usage:javaICMP<deviceindex(eg)>);
for(inti=;i<deviceslength;i++)
Systemoutprintln(i+:+devices[i]name+(+devices[i]description+));
Systemexit();
}
intindex=IntegerparseInt(args[]);
//开启网络设备
JpcapCaptorcaptor=JpcapCaptoropenDevice(devices[index]false);
//设置只过滤icmp包
captorsetFilter(icmptrue);
JpcapSendersender=captorgetJpcapSenderInstance();
ICMPPacketp=newICMPPacket();
ptype=ICMPPacketICMP_ECHO;
pseq=(short)x;
pid=(short)x;
psetIPvParameter(falsefalsefalsefalsefalsefalseIPPacketIPPROTO_ICMP
InetAddressgetByName()InetAddressgetByName());
pdata=abcdefghijklmnopqrstuvwabcdehghigetBytes();
EthernetPacketether=newEthernetPacket();
etherframetype=EthernetPacketETHERTYPE_IP;
//填写自己和对方的mac地址必须要正确填写如果有错误将无法收到回包
etherdst_mac=newbyte[]{(byte)x(byte)x(byte)xd(byte)x(byte)xd(byte)x};
ethersrc_mac=newbyte[]{(byte)x(byte)x(byte)x(byte)xad(byte)xc(byte)x};
pdatalink=ether;
sendersendPacket(p);
Systemoutprintln(send);
ICMPPacketrp=null;
while(true){
rp=(ICMPPacket)captorgetPacket();
if(rp==null){
thrownewIllegalArgumentException(norcvicmpechoreply);
}else
{
Systemoutprintln(rcvicmpechoreply);
return;
}
}
}
}