gpt4 book ai didi

java - 未检测到 Linux 中的网络接口(interface)

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:37:26 24 4
gpt4 key购买 nike

我试过下面的代码:

NetworkInterface[] devices = JpcapCaptor.getDeviceList();
JpcapCaptor jpcap = null;
System.out.print(devices.length);
for (int a=0;a<devices.length;a++)
{
try
{
jpcap = JpcapCaptor.openDevice(devices[a], 2000, true, 20);
jpcap.loopPacket(-1, new arp_spoofing());//for capture packet
}
catch (IOException ex)
{
Logger.getLogger(Receiver2.class.getName()).log(Level.SEVERE, null, ex);
}
}

在相同的代码中。当我在 windows 中运行时,我得到了一些界面,但在 linux 中我没有得到任何界面..没有语法错误..

最佳答案

我在 Ubuntu 11.10 和 netbeans 中运行时遇到了同样的问题。当我尝试使用终端(具有 sudo 权限)运行 jar 文件时,它起作用了。我认为问题在于 linux 中的权限。

尝试在终端中运行 .jar 文件 sudo java -jar YourJarFile.jar

关于java - 未检测到 Linux 中的网络接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14916408/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com