如何在安卓手机上运行 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 命令的主要内容,如果未能解决你的问题,请参考以下文章

安卓手机运行用 电脑windows的cmd命令

电脑命令行控制安卓手机

安卓手机如何查看后台运行程序

如何用adb命令结束安卓设备上所有运行和后台程序?

安卓7.0没有无线adb

如何在安卓手机里运行JAVA程序?