gpt4 book ai didi

java - 在android上处理命令 "arp -a"?

转载 作者:行者123 更新时间:2023-12-05 00:08:23 32 4
gpt4 key购买 nike

我正在尝试在我的 android 设备上调用“arp -a”,但由于它仅适用于 pc - 我该如何更改?有没有办法访问 arp -a 给你的 IP 地址列表,但是在 android 上?

我的代码在android设备上是这样的:

try {

Process process = Runtime.getRuntime().exec("arp -a");
process.waitFor();
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
int i = 0;
while (reader.ready()) {
i++;
String ip = reader.readLine();
if (i >= 4) {
ip = ip.substring(2, 15) + "\n";
}
}
} catch (IOException | InterruptedException ioe) {
ioe.printStackTrace();
}

最佳答案

安装busybox和一些终端模拟器,连接到Wi-Fi就完成了。

关于java - 在android上处理命令 "arp -a"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39294726/

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