如何在安卓手机上运行 arp 命令
Posted
技术标签:
【中文标题】如何在安卓手机上运行 arp 命令【英文标题】:How to run arp command on an android phone 【发布时间】:2018-11-27 19:17:54 【问题描述】:我已将三个摄像头连接到我的手机,我想知道它们的 IP 地址。在 windows 和 linux 中,它使用 arp 命令,但此命令不在 android 终端上运行。我怎样才能在 android 上运行 arp 命令,或者有其他方法可以达到同样的效果吗?
【问题讨论】:
【参考方案1】:使用此代码为我工作。
try
Process process = Runtime.getRuntime().exec("cat /proc/net/arp");
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
String output = "";
while ((line = reader.readLine()) != null)
System.out.println(line);
reader.close();
Log.d("*************", ""+output);
catch (IOException e)
e.printStackTrace();
System.out.println(e);
return "";
【讨论】:
以上是关于如何在安卓手机上运行 arp 命令的主要内容,如果未能解决你的问题,请参考以下文章