我在使用 jsoup 获取一些内容时遇到问题。实际上内容是这样的形式:
<li>
<p>
<span class=”title” style =”font-weight:lighter”> Title </span> <br/>
<span class=”time”>Time Date </span>
</p>
<p class=””> Description
</p>
</li>
我通过使用此代码片段获取标题和日期时间。
Document doc = Jsoup.connect(url).timeout(60*1000).followRedirects(true).get();
for( Element element : doc.select("#incidents") ) {
String title = element.select("span.title").text() ;
String timeDate = element.select("span.time").text() ;
//String description = element.select("p").first().text();
}
现在我想得到描述,但<p class=””> Description</p>
我不知道。我尝试了许多链接的不同方法,但徒劳无功。任何对此有想法的人。