我正在尝试比较3G网络和WiFi之间的网页加载时间,所以我正在寻找可以在Android中用于此目的的类。
但到目前为止,我还没有找到任何非常有用的课程。
以前是否有人这样做过,你们用过什么?
提前致谢:)
答案 0 :(得分:1)
我认为这会对您有所帮助:使用不同的网络连接执行此操作:
//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();
}
}
答案 1 :(得分:0)
要比较Android上WiFi和3G之间的加载时间,您可以使用WebDevTools:
https://play.google.com/store/apps/details?id=com.voltcode.webdevtools
免责声明 - 我与发布此软件的公司有联系。