Java Jsoup:我应该如何从这个 html 中提取以下数据点?

Java Jsoup: How should I extract the following data point from this html?

我正在尝试从以下内容中提取最新信息:

下面是我正在查看的 html 代码,但我不知道如何使用 Jsoup 解决这个问题?问题是在 html 中有许多 类 称为 "UL1",多个 "Last" 和许多 "td"。 在这种情况下,我需要获取当前价格“31.4”。

<td rowspan="2" class="bg1 W1">
           <ul class="UL1"><li class="LI1 font12_grey W1">Last</li></ul>
           <ul class="UL1"><li class="LI2 font28 C bold W1"><span class="neg bold">31.400</span></li></ul>
           <ul class="UL1 none" style="display:none;"><li class="LI1 C W1">
          <img src="/en/Images/Stock/icon_see.gif" border=0 /><a id="ctl00_ctl00_cphContent_cphContent_lnkAddMonitor" class="font12a" href="#">Monitor</a><img src="/en/Images/Stock/icon_group.gif" border=0 /><a id="ctl00_ctl00_cphContent_cphContent_lnkAddPortfolio" class="font12a" href="#">Portfolio</a> 
           </li></ul>
           </td>

您可以查找包含文本 Lastul 元素,然后查找下一个兄弟元素:

ul:contains(Last) + ul>li>span

您可以找到演示 here