我正在尝试比较 3G 网络和 WiFi 之间的网页加载时间,因此我正在寻找可以在 android 中用于此目的的类。
但到目前为止,我还没有找到任何非常有用的课程。
以前有没有人这样做过,你们用的是什么?
提前致谢 :)
我认为这将对您有所帮助:使用不同的网络连接执行此操作:
//start a timer here
URL url = new URL("http://www.android.com/");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
try
{
InputStream in = new BufferedInputStream(urlConnection.getInputStream());
readStream(in);
//End timer after read stream. Log the time difference.
finally
{
urlConnection.disconnect();
}
}
要比较 Android 上 WiFi 和 3G 的加载时间,您可以使用 WebDevTools:
https://play.google.com/store/apps/details?id=com.voltcode.webdevtools
免责声明 - 我与发布此软件的公司有联系。