zoukankan      html  css  js  c++  java
  • TrafficStats Android流量统计类的使用

    android.net.TrafficStats类中,提供了多种静态方法,可以直接调用获取,返回类型均为long型,如果返回等于-1代表 UNSUPPORTED 当前设备不支持统计。 
       static long  getMobileRxBytes()  //获取通过Mobile连接收到的字节总数,这里提示大家不包含WiFi
       static long  getMobileRxPackets()  //获取Mobile连接收到的数据包总数
       static long  getMobileTxBytes()     //Mobile发送的总字节数
       static long  getMobileTxPackets()  //Mobile发送的总数据包数
       static long  getTotalRxBytes()     //获取总的接受字节数,包含Mobile和WiFi等
       static long  getTotalRxPackets()  //总的接受数据包数,包含Mobile和WiFi等
       static long  getTotalTxBytes()     //总的发送字节数,包含Mobile和WiFi等
       static long  getTotalTxPackets()  //发送的总数据包数,包含Mobile和WiFi等
       static long  getUidRxBytes(int uid)  //获取某个网络UID的接受字节数
       static long  getUidTxBytes(int uid)  //获取某个网络UID的发送字节数
      最后再次提醒开发者,TrafficStats类工作在Android 2.2 API Level为8的固件上。

  • 相关阅读:
    vs 编译加速
    leetcode 1405
    sort 从大到小从小到大
    leetcode1404
    leetcode 1406
    leetcode 1556
    杭电研究生自动登录联网脚本
    Cannot mix incompatible Qt library (version ) with this library (version ) 解决方案
    目标检测算法优化技巧
    特征工程和模型融合--机器学习--思维导图和笔记
  • 原文地址:https://www.cnblogs.com/androidsj/p/3082545.html
Copyright © 2011-2022 走看看