是否可以使用某种HTML解析器,我将在其中选择要显示哪个标签的信息,然后清除所有其他?
我尝试过使用Jsoup。为Android开发。 durig选择我的应用程序由于'outofmemmoryerror'而崩溃
答案 0 :(得分:2)
您可以使用JSoup提取部分代码并将其分开
例如:
String html = "<p>An <a href='http://example.com/'><b>example</b></a> link.</p>";
Document doc = Jsoup.parse(html);
Element link = doc.select("a").first();
String text = doc.body().text(); // "An example link" , and ignore the rest