我正在尝试使用这个库commons-csv (1.5)来生成 csv 文件,我制作了一个简单的程序来查看结果:
String SAMPLE_CSV_FILE = "./sample.csv";
try (
BufferedWriter writer = Files.newBufferedWriter(Paths.get(SAMPLE_CSV_FILE));
CSVPrinter csvPrinter = new CSVPrinter(writer, CSVFormat.EXCEL
.withHeader("ID", "Name", "Designation", "Company"));
) {
csvPrinter.printRecord("1", "Name1 ", "CEO", "Google");
csvPrinter.printRecord("2", "Name2", "CEO", "Microsoft");
csvPrinter.flush();
}
我的 CSV 生成良好,但标题和数据在每一列中没有分开,当我打开 CSV 文件时,我在第一列中看到所有数据和标题
我还没有找到好的 CSVFormat,如何将它们分开?
互换的青春
aluckdog
相关分类