0

在三星设备上,缺少网络统计信息 /sys/devices/virtual/net/wlan0/ 的目录……还有其他(例如环回)接口的目录。

wlan0 是接口的正确名称,它位于 /sys/class/net 或 java 应用程序的程序列表中。

有谁知道为什么或在哪里可以找到这些数据(例如传输字节的 nr 和类似的?)

4

2 回答 2

0

以下摘自开源代码 PowerTutor

String interfaceName = SystemInfo.getInstance().getProperty("wifi.interface");
if(interfaceName == null) interfaceName = "eth0";

transPacketsFile = "/sys/devices/virtual/net/" +
                   interfaceName + "/statistics/tx_packets";

希望这可以帮助你。

于 2013-04-30T11:58:42.700 回答
0

在摩托罗拉 X 和 Nexus 7 中,该文件位于:

/sys/class/net/wlan0/*

Nexus 7 上的网络统计信息

于 2015-05-11T05:03:40.893 回答