<tr valign="middle" align="center">
<td><b>someNumbers</b></td>
<td width="22" height="22" background="..." class="SomeIntrestingClass">xxxxx</td>
<td width="22" height="22" background="..." class="SomeIntrestingClass">xgdsx</td>
<td width="22" height="22" background="..." class="SomeIntrestingClass">xyzzx</td>
<td width="22"> </td></tr>
我正在做一個需要從網站的數據的應用程序。我需要提取'someNumbers'中的值以及td ex中的值:'xyzzx'...
我遇到的問題是'someNumbers沒有類,所以我嘗試使用doc.getElementsByAttributeValue(key, value)
但該文檔的其他部分的屬性相同。我怎樣才能使用JSoup或任何其他明智的想法提取這些值?感謝您的任何建議。刮Html屬性
你可以選擇所有的'td'並只獲取文本內容嗎? – nhahtdh
我可以選擇td標籤。但是,這將導致1k結果,我只使用'someNumbers'將很難區分的30%。但生病嘗試。 – wtsang02