0
我是一個罕見的程序員,我正在嘗試學習Java。我有一個網絡項目,我想要做的,並且碰到了Jsoup,這看起來很好 - 除了我無法從網頁上得到我想要的(我確信答案很簡單)。可以有人(儘可能多的細節)解釋我如何從這張表的行中提取280.00? 10可以用來識別唯一的行(因爲表中還有其他幾行)。Jsoup表查詢
我已經結束了與此代碼: -
// Take the 3rd column of the table called tabletext and extract the 3rd element only
Elements entry =document.select(".tabletextd:eq(3)").eq(2);
System.out.println(entry.text());
是不是合理或是否有更好的辦法?
感謝,
馬克
<tr align="center" style="background:#FFFFFF">
<td>10</td>
<td>10.00</td>
<td>£0.00</td>
<td>£280.00</td>
<td>
<a href="/cart.php?action=add&qty=10&id=2628" title="Click here to add this item to your cart">
<img alt="Click here to add this item to your cart" src="/images/addtocart.gif" border="0" />
</a>
</td>
</tr>