ios统计流量代码

100 篇文章 0 订阅
88 篇文章 0 订阅
[cpp]  view plain copy
  1. #include <ifaddrs.h>  
  2. #include <sys/socket.h>  
  3. #include <net/if.h>  

1.3G/GPRS流量统计

[cpp]  view plain copy
  1. int getGprs3GFlowIOBytes()  
  2. {  
  3.     struct ifaddrs *ifa_list = 0, *ifa;  
  4.     if (getifaddrs(&ifa_list) == -1)  
  5.     {  
  6.         return 0;  
  7.     }  
  8.    
  9.     uint32_t iBytes = 0;  
  10.     uint32_t oBytes = 0;  
  11.    
  12.     for (ifa = ifa_list; ifa; ifa = ifa->ifa_next)  
  13.     {  
  14.         if (AF_LINK != ifa->ifa_addr->sa_family)  
  15.             continue;  
  16.    
  17.         if (!(ifa->ifa_flags & IFF_UP) && !(ifa->ifa_flags & IFF_RUNNING))  
  18.             continue;  
  19.    
  20.         if (ifa->ifa_data == 0)  
  21.             continue;  
  22.    
  23.         if (!strcmp(ifa->ifa_name, "pdp_ip0"))  
  24.         {  
  25.             struct if_data *if_data = (struct if_data *)ifa->ifa_data;  
  26.    
  27.             iBytes += if_data->ifi_ibytes;  
  28.             oBytes += if_data->ifi_obytes;  
  29.             NSLog(@"%s :iBytes is %d, oBytes is %d",  
  30.                   ifa->ifa_name, iBytes, oBytes);  
  31.         }  
  32.     }  
  33.     freeifaddrs(ifa_list);  
  34.    
  35.     return iBytes + oBytes;  
  36. }  

返回的结果为byte

2.WIFI流量统计功能

[java]  view plain copy
  1. - (long long int)getInterfaceBytes  
  2. {  
  3.     struct ifaddrs *ifa_list = 0, *ifa;  
  4.     if (getifaddrs(&ifa_list) == -1)  
  5.     {  
  6.         return 0;  
  7.     }  
  8.    
  9.     uint32_t iBytes = 0;  
  10.     uint32_t oBytes = 0;  
  11.    
  12.     for (ifa = ifa_list; ifa; ifa = ifa->ifa_next)  
  13.     {  
  14.         if (AF_LINK != ifa->ifa_addr->sa_family)  
  15.             continue;  
  16.    
  17.         if (!(ifa->ifa_flags & IFF_UP) && !(ifa->ifa_flags & IFF_RUNNING))  
  18.             continue;  
  19.    
  20.         if (ifa->ifa_data == 0)  
  21.             continue;  
  22.    
  23.         /* Not a loopback device. */  
  24.         if (strncmp(ifa->ifa_name, "lo"2))  
  25.         {  
  26.             struct if_data *if_data = (struct if_data *)ifa->ifa_data;  
  27.    
  28.             iBytes += if_data->ifi_ibytes;  
  29.             oBytes += if_data->ifi_obytes;  
  30.    
  31. //            NSLog(@"%s :iBytes is %d, oBytes is %d",  
  32. //                  ifa->ifa_name, iBytes, oBytes);  
  33.         }  
  34.     }  
  35.     freeifaddrs(ifa_list);  
  36.    
  37.     return iBytes+oBytes;  
  38. }  

以上获取的数据可以通过以下方式进行单位转换

[cpp]  view plain copy
  1. NSString *bytesToAvaiUnit(int bytes)  
  2. {  
  3.     if(bytes < 1024)     // B  
  4.     {  
  5.         return [NSString stringWithFormat:@"%dB", bytes];  
  6.     }  
  7.     else if(bytes >= 1024 && bytes < 1024 * 1024) // KB  
  8.     {  
  9.         return [NSString stringWithFormat:@"%.1fKB", (double)bytes / 1024];  
  10.     }  
  11.     else if(bytes >= 1024 * 1024 && bytes < 1024 * 1024 * 1024)   // MB  
  12.     {  
  13.         return [NSString stringWithFormat:@"%.2fMB", (double)bytes / (1024 * 1024)];  
  14.     }  
  15.     else    // GB  
  16.     {  
  17.         return [NSString stringWithFormat:@"%.3fGB", (double)bytes / (1024 * 1024 * 1024)];  
  18.     }  
  19. }  
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值