0
4

2 回答 2

0

<table>如果添加<table>标签后没有它对我有用,这确实对我不起作用:

<table>
<td width="70%" class="row1">
<b>4</b>
<br />( 0 posts per day / 0.00% of total forum posts )
</td>
</table>

您可以尝试通过添加打印元素或整个文档来检查您的 HTML 是否被很好地解析:

System.out.println("totalPost:" + totalPost.html());
System.out.println("doc:" + doc.html());
于 2013-10-23T17:02:52.653 回答
0

这是一个例子:

final String html = "<td width=\"70%\" class=\"row1\">\n"
        + "<b>4</b>\n"
        + "<br />( 0 posts per day / 0.00% of total forum posts )\n"
        + "</td>";

Document doc = Parser.xmlParser().parseInput(html, ""); // Alternative: Jsoup.parse(...) or connect to a website
Element bTag = doc.select("td > b").first();

System.out.println(bTag.text());

这将打印4.

于 2013-10-23T17:08:36.283 回答