android之監控各個程式的流量

來源:互聯網
上載者:User
public void getAppTrafficList(){          //擷取所有的安裝在手機上的應用軟體的資訊,並且擷取這些軟體裡面的許可權資訊          PackageManager pm=getPackageManager();//擷取系統應用程式套件管理          //擷取每個包內的androidmanifest.xml資訊,它的許可權等等          List<PackageInfo> pinfos=pm.getInstalledPackages                  (PackageManager.GET_UNINSTALLED_PACKAGES | PackageManager.GET_PERMISSIONS);          //遍曆每個應用程式套件資訊          for(PackageInfo info:pinfos){              //請求每個程式包對應的androidManifest.xml裡面的許可權              String[] premissions=info.requestedPermissions;              if(premissions!=null && premissions.length>0){                  //找出需要網路服務的應用程式                  for(String premission : premissions){                      if("android.permission.INTERNET".equals(premission)){                          //擷取每個應用程式在作業系統內的進程id                          int uId=info.applicationInfo.uid;                          //如果返回-1,代表不支援使用該方法,注意必須是2.2以上的                          long rx=TrafficStats.getUidRxBytes(uId);                          //如果返回-1,代表不支援使用該方法,注意必須是2.2以上的                          long tx=TrafficStats.getUidTxBytes(uId);                          if(rx<0 || tx<0){                              continue;                          }else{  //                            Toast.makeText(this, info.applicationInfo.loadLabel(pm)+"消耗的流量--"+  //                        Formatter.formatFileSize(this, rx+tx), Toast.LENGTH_SHORT);                        }                      }                  }              }          }      }  

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.