今天在学习android解析HTML,突然找到一个工具Jsoup解析HTML挺好,并且语法像js一样
String htmlString = getHtmlString("http://www.baidu.com"); Document document = Jsoup.parse(htmlString);
String title = document.head().getElementsByTag("title").text();
Jsoup的官方网站里面解析的很详细
Document doc = Jsoup.parse(new URL("http://www.badidu.com"), 5000);