流量篇
  近在研究IOS 的性能测试,时间太紧没来得及发帖,加通宵挤出时间给大家分享一点东西,希望对大家有所帮助!
  Android 2.2之前
  对于Android2.2 的流量 版本以前的系统的流量信息都存放在 proc/net/dev(或者 proc/self/net/dev)文件下,读取文件然后对其进行解析行了。读取某一个应用的流量,则读取proc/uid_stat/uid /tcp_rcv 文件进行解析(注:模拟器下不存在这个目录)。如需查看某个应用的流量信息,可以通过以下命令来实现:
  adb devices                         列出所有设备
  adb -s 设备名称 shell                进入对应的设备
  cd proc                             进入设备的属性目录
  cd uid_stat                         进入 user id 状态目录,每个应用程序在安装的时候系统会为每个应用分配一个对应的 uid
  ls                                  列出 uid_stat 目录下所有应用对应的 user id 目录
  cd uid                              进入对应应用的 uid 目录
  ls                                  查看对应 uid 目录下的 tcp_rcv 和 tcp_snd 目录
  cat tcp_rcv                         查看该应用接收的数据信息
  cat tcp_snd                         查看该应用发送的数据信息
  Android 2.2之后
  我这里有两种办法:
  第一种
  通过PID下面的net/dev
  先找到应用的PID
  adb shell ps
  这边拿到PID:21896 然后在去/proc目录下的PID/net/dev面可以看到:
  adb shell cat /proc/"+Pid+"/net/dev"
  这边的wlan0代表wifi 上传下载量标识! 上传下载量单位是字节可以/1024换算成KB
  这里可以看到下载的字节数 、数据包 和 发送的字节数 、数据包
  小技巧:wlan0这些值如何初始化0 很简单 你打开手机飞行模式再关掉清0了
  第二种
  通过proc/net/xt_qtaguid/stats
  在说第二种获取流量方法之前先给这边先给大家说下uid
  uid的获取可以在对应的PID下面去查看status,里面会查到uid
  adb shell cat /proc/<pid>/status
  下面这个方法是通过PackageManager去取:
  try {
  PackageManager pm = getPackageManager();
  ApplicationInfo ai = pm.getApplicationInfo("PackageName", PackageManager.GET_ACTIVITIES);
  Log.d("!!", "!!" + ai.uid);
  } catch (NameNotFoundException e) {
  e.printStackTrace();
  }
  拿到UID后呢继续:
  adb shell cat /proc/net/xt_qtaguid/stats | grep uid
  其中第6和8列为 rx_bytes(接收数据)和tx_bytes(传输数据)包含tcp,udp等所有网络流量传输的统计。
  一个uid可能对应多个 进程,所以这有两行流量是累加的求和行。
  用java去获取打印
  我这边是用先获取PID然后调用!你可以把获取PID作为一个变量传到GetFlow里面来!
  我这边只获取下载流量,你可以把上传下载的流量都获取出来!
  //获取PID
public static String PID(String PackageName) throws IOException {
String PID=null;
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("adb shell ps |grep "+PackageName);
try {
if (proc.waitFor() != 0) {
System.err.println("exit value = " + proc.exitValue());
}
BufferedReader in = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
StringBuffer stringBuffer = new StringBuffer();
String line = null;
while ((line = in.readLine()) != null) {
stringBuffer.append(line+" ");
}
String str1=stringBuffer.toString();
String str2=str1.substring(str1.indexOf(" "+PackageName)-46,str1.indexOf(" "+PackageName));
String str3 =str2.substring(0,7);
str3 = str3.trim();
PID=str3;
} catch (InterruptedException e) {
System.err.println(e);
}finally{
try {
proc.destroy();
} catch (Exception e2) {
}
}
return PID;
}
  //获取下载流量
public static double GetFlow(String PackageName) throws IOException {
double FlowSize=0;
String Pid=PID(PackageName);
try{
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("adb shell cat /proc/"+Pid+"/net/dev");
try {
if (proc.waitFor() != 0) {
System.err.println("exit value = " + proc.exitValue());
}
BufferedReader in = new BufferedReader(new InputStreamReader(
proc.getInputStream()));
StringBuffer stringBuffer = new StringBuffer();
String line = null;
while ((line = in.readLine()) != null) {
stringBuffer.append(line+" ");
}
String str1=stringBuffer.toString();
String str2=str1.substring(str1.indexOf("wlan0:"),str1.indexOf("wlan0:")+90);
String str4=str2.substring(7,16);
str4 = str4.trim();
int Flow=Integer.parseInt(str4);
FlowSize=Flow/1024;
} catch (InterruptedException e) {
System.err.println(e);
}finally{
try {
proc.destroy();
} catch (Exception e2) {
}
}
}
catch (Exception StringIndexOutOfBoundsException)
{
}
return FlowSize;
}