W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
應用通過調用 API 接口,可以獲取蜂窩網(wǎng)絡、所有網(wǎng)卡、指定應用或指定網(wǎng)卡的數(shù)據(jù)流量統(tǒng)計值。
應用進行流量統(tǒng)計,所使用的接口主要由 DataFlowStatistics 提供。
接口名 | 功能描述 |
---|---|
getCellularRxBytes() | 獲取蜂窩數(shù)據(jù)網(wǎng)絡的下行流量。 |
getCellularTxBytes() | 獲取蜂窩數(shù)據(jù)網(wǎng)絡的上行流量。 |
getAllRxBytes() | 獲取所有網(wǎng)卡的下行流量。 |
getAllTxBytes() | 獲取所有網(wǎng)卡的上行流量。 |
getUidRxBytes(int uid) | 獲取指定UID的下行流量。 |
getUidTxBytes(int uid) | 獲取指定UID的上行流量。 |
getIfaceRxBytes(String nic) | 獲取指定網(wǎng)卡的下行流量。 |
getIfaceTxBytes(String nic) | 獲取指定網(wǎng)卡的上行流量。 |
調用 DataFlowStatistics 的接口可進行流量統(tǒng)計,以統(tǒng)計指定應用進程的流量為例。
long rx = DataFlowStatistics.getUidRxBytes(uid);
long tx = DataFlowStatistics.getUidTxBytes(uid);
// 進行數(shù)據(jù)收發(fā)
// 統(tǒng)計流量
rx = DataFlowStatistics.getUidRxBytes(uid) - rx;
tx = DataFlowStatistics.getUidTxBytes(uid) - tx;
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: