我在我的 android 应用程序中使用 jsoup,但问题是,html 源代码需要太多时间来下载。这是我的代码:
long t = System.currentTimeMillis();
String url = "http://www.stackoverflow.com/";
Document doc = null;
try {
Connection c = Jsoup.connect(url);
doc = c.get();
System.out.println(System.currentTimeMillis() - t);
} catch (IOException e) {
e.printStackTrace();
}
执行此代码需要 1.265 秒,这感觉很奇怪,因为我可以在同一设备上使用网络浏览器在不到 0.5 秒的时间内下载整个网站(包含图像和所有好东西)。我做错什么了吗?或者也许有一种更快的方法来获取网站的 html 源代码?提前致谢。