如何使用Jsoup解析html文本?

时间:2014-02-28 06:28:44

标签: java html-parsing jsoup

如何使用Jsoup解析库来解析html文件,使得Tags应该与空白具有相同的效果?

例如。

如果我使用Jsoup解析函数解析下面的字符串

word<br>one<br>is<br>one<br>word

我应该

word one is one word

而不是

wordoneisoneword

1 个答案:

答案 0 :(得分:1)

请看这里:

final String html = "word<br>one<br>is<br>one<br>word";
Document doc = Jsoup.parse(html);

String output = doc.text();

System.out.println(output);

<强>输出:

word one is one word