解决方法
我会推荐
Jsoup.它比tagsoup大,但提供了内置的功能,从URL拉HTML,是超级容易使用.例如,如果要使用id示例来拉一个div,您将执行以下操作:
Document doc = Jsoup.connect(url).get(); Elements ele = doc.select("div#example");
然后加载你所提取的HTML到你将要做的网页视图中:
String html = ele.toString(); String mime = "text/html"; String encoding = "utf-8"; webView.loadData(html,mime,encoding);