gpt4 book ai didi

安卓网络统计

转载 作者:太空狗 更新时间:2023-10-29 13:42:38 25 4
gpt4 key购买 nike

是否可以创建一个在作为后台进程运行时获取网络 Activity/统计信息的应用程序?或者只是制作一个监听特定端口上的流量的应用程序?

谢谢中号

最佳答案

它可能碰碰运气。但是我用过的大多数设备都有/proc 文件系统。您应该能够从/proc/net/条目之一中获取所需的统计信息。例如获取 netstat:

Process proc = Runtime.getRuntime().exec(new String[] {"cat", "/proc/net/netstat"});
BufferedReader reader = new BufferedReader(new InputStreamReader(proc.getInputStream()));
String line = null;

while ((line = reader.readLine()) != null)
{
// parse netstat output here
}

关于安卓网络统计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3904034/

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