私は初心者でJsoup
、長い間検索している間に解決策を見つけることができませんでした. tr
最後に空白のあるクラス名を持つテーブルがあります。
<table class="table_one">
<tr class="no_background ">
<td>
<b> Text comes here</b>
</td>
<td> and here... </td>
</tr></table>
今、私はテキストにアクセスしたいと思います。私が言ったら
Select("table[class=tag_std] tr[class=bgnd_1 ]")
リストを返しempty
ます。値を取得するにはどうすればよいですか
"Text comes here and here...".
ありがとう。