我已经完成了所有必要的导入(Jsoup Elements and Element
)并且代码运行良好。我是初学者,无法将文件正确导出为 CSV。数据要么位于同一行,要么位于同一列。
Document document = Jsoup.connect("https://www.investing.com/markets/united-states").get();
Elements tables = document.select("tr");
tables.stream().forEach(e ->
{
String values = e.text();
String csValues = String.join(",", values);
System.out.println(csValues);
});
}
}
寻求帮助。谢谢你。