我最近开始使用 Jsoup。我需要在 HTML 源代码中列出一些元素。例如:
<table class="list">
<tr>
<td class="year" colspan="5">2012</td>
</tr>
<tr>
<td class="code">COMP0348</td>
<td class="name">Software Engineering</td>
</tr>
<tr>
<td class="code">COMP0734</td>
<td class="name">System Information</td>
</tr>
<td class="year" colspan="5">2013</td>
</tr>
<tr>
<td class="code">COMP999</td>
<td class="name">Windows</td>
</tr>
</table>
这就是我要的:
2012
Comp0348 Software Engineering
COMP0734 System Information
2013
COMP999 Windows
但是在我的代码中,它不是一个一个列出,它列出了一个字符串,其中首先包含所有“年份”,然后在另一行中包含所有“代码”,然后在另一行中列出所有“名称”。喜欢:
2012
Comp0348 COMP0734 COMP999
Software Engineering System Information Windows
我怎样才能做到这一点?