如何获取互联网使用的数据量(以 kb 为单位)?
我制作一个应用程序,我需要用户通过访问互联网使用的总数据量。 我怎样才能得到这个值。 请帮我发送代码。
i making a application where i need total amount of data used by user by accessing internet.
how could i get that value.
plz help me send the code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,没有 API 可以直接获取使用的数据量(以 KB 为单位)。
最接近的方法是
net.rim.device.api.system.RadioInfo.getNumberOfPacketsReceived()
,这些方法可以为您提供发送/接收的 IP 数据包的数量。通过蜂窝无线电传输的数据包的 MTU(最大传输单元)通常约为 600-1200 字节,因此您可以获得近似值,但各个数据包可能存在几百字节的差异,因此您无法获得确切的数量。根据您的应用程序,这可能就足够了。
Unfortunately there are no APIs to directly get the amount of data used in KB.
The methods that come closest are
net.rim.device.api.system.RadioInfo.getNumberOfPacketsReceived()
andThese give you the number of IP packets sent/received. MTU (Maximum Transmission Unit) for a packet over a cellular radio is usually around 600-1200 bytes, so you can get an approximation, but individual packets may differ by a few hundred bytes, so you can't get an exact amount. Depending on your app, this may be enough.