Android按标签名称读取文档Html

时间:2014-06-03 10:48:43

标签: android html tags jsoup document

我试图使用Jsoup从Html读取文档。事实上,我已经获得了文档,但现在我只想按标签阅读内容,我的意思是,我想获得以下示例的内容文本:

<span class="myLink"><a title="view text" href="/someref.html" onclick="somestuff"> My content text </a></span>

所以我想只阅读文字&#34;我的内容文字&#34;。

提前致谢!!

1 个答案:

答案 0 :(得分:1)

    String s = "<span class=\"myLink\"><a title=\"view text\" href=\"/someref.html\" onclick=\"somestuff\"> My content text </a></span>";
    Document doc = Jsoup.parseBodyFragment(s);
    Elements el = doc.select("a");
    System.out.println(el.first().ownText());

输出:

My content text