JSoup运行速度很慢

时间:2015-05-19 04:44:57

标签: android jsoup

我正在尝试使用Jsoup从网站解析html以提取img元素,但它运行得非常慢

  try {
        Document doc = Jsoup.connect(webUrl).get();
        Elements imgElements = doc.select("img");
        }
    } catch (IOException e) {
        e.printStackTrace();
    }

记录:时间运行结束11289.0

1 个答案:

答案 0 :(得分:0)

Jsoup将图片加载到互联网上,因此只需通过互联网获取网页解析它。

您应该尝试在本地和文件中加载页面,看看文档中是否存在某些复杂性导致Jsoup花费大量时间。