jsoupElement.children()
では、Element のすべての子 (子孫) が返されます。しかし、エレメントの第 1 レベルの子 (直接の子) が必要です。
どの方法を使用できますか?
ここでは、第 1 レベルの子の値を取得できます
Element addDetails = doc.select("div.container > div.main-content > div.clearfix > div.col_7.post-info > ul.no-bullet").first();
Elements divChildren = addDetails.children();
for (Element elem : divChildren) {
System.out.println(elem.text());
}