私がやりたいことは、3G トラフィックと WiFi トラフィックをそれぞれカウントすることです。これで、WiFi の使い方がわかりました。以下はWiFiのソースコードです。このようにして、すべてのメーカーのすべての Android 携帯の WiFi トラフィックをカウントできます。しかし、私は 3g の同様の方法を見つけていません。誰か知っていますか?
//to get wifi interface
private static String getProp(String prop){
String output = "";
try{
Class<?> sp = Class.forName("android.os.SystemProperites");
Method get = sp.getMethod("get",String.class);
output = (String)get.invoke(null,prop);
}catch(Exception e){
e.printStackTrace();
}
return output;
}
//to get the traffic from system file
...
...
if (connectinTpe == ConnectivityManager.TYPE_WIFI){
String wifiInterface = getProp("wifi.interface");
if(wifiInterface == null || "".equals(wifiInterface)) wifiInterface = "eth0";
rxFile = "/sys/class/net/" +wifiInterface+ "/statistics/rx_bytes";
txFile = "/sys/class/net/" +wifiInterface+ "/statistics/tx_bytes";
}
...
...