我正在开发一个 Android 应用程序,我需要尽可能准确地测量当前连接的下载速度。这是迄今为止我能找到的最好的方法(基本上我启动一个计时器,开始从快速服务器下载 Linux 发行版,下载大约 200 KB,然后停止计时器并检查经过的时间和下载的总字节数):
try{
InputStream is = new URL("http://www.domain.com/ubuntu-linux.iso").openStream();
byte[] buf = new byte[1024];
int n = 0;
startBytes = TrafficStats.getTotalRxBytes(); /*gets total bytes received so far*/
startTime = System.nanoTime();
while(n<200){
is.read(buf);
n++;
}
endTime = System.nanoTime();
endBytes = TrafficStats.getTotalRxBytes(); /*gets total bytes received so far*/
totalTime = endTime - startTime;
totalBytes = endBytes - startBytes;
}
catch(Exception e){
e.printStackTrace();
}
之后,我只需要将传输的字节数除以所花费的时间,它就会给出以 bps 为单位的下载速度。
问题: 1. 这种方法准确吗?2.你知道更好的吗?
非常感谢。