我已经安装了 jpcap 并将其添加到库中,但我在这一行中有错误:
String[] devices = JpcapCaptor.getDeviceList();
我想我添加错了,因为它说:找不到Javadoc。此项目的 Javadoc 文档不存在,或者您尚未在 Java 平台管理器或库管理器中添加指定的 Javadoc。
public static void main(String[] args) throws UnknownHostException {
// TODO code application logic here
String[] devices = JpcapCaptor.getDeviceList();
if(args.length<1){
System.out.println("Usage: java SentUDP <device index (e.g., 0, 1..)>");
for(int i=0;i<devices.length;i++)
System.out.println(i+":"+devices[i].name+"("+devices[i].description+")");
System.exit(0);
}
这是 deviceList()
方法的 javadoc 链接:http://netresearch.ics.uci.edu/kfujii/Jpcap/doc/javadoc/jpcap/JpcapCaptor.html#getDeviceList()
如您所见,它返回一个NetworkInterface
对象的数组,而不是字符串数组。