在Samsung设备上,缺少具有网络统计信息/ sys / devices / virtual / net / wlan0 /的目录...有其他(例如,浏览)接口的目录。
wlan0是接口的正确名称,它位于/ sys / class / net或java应用程序的程序化列表中。
有人知道为什么或在哪里找到这些数据(例如nr的传输字节和类似的?)
答案 0 :(得分:0)
以下内容摘自开源代码PowerTutor
String interfaceName = SystemInfo.getInstance().getProperty("wifi.interface");
if(interfaceName == null) interfaceName = "eth0";
transPacketsFile = "/sys/devices/virtual/net/" +
interfaceName + "/statistics/tx_packets";
希望这可以帮到你。
答案 1 :(得分:0)