我使用org.apache.commons.csv.CSVFormat输出csv文件。我的配置如下:
String[] HEADERS = {"sku", "question", "annotation", "answer", "url", "answerType"};
CSVFormat csvInFormat = CSVFormat.DEFAULT.withHeader(HEADERS);
CSVPrinter printer = new CSVPrinter(bw, csvInFormat);
这将以逗号分隔打印csv。如何使用制表符作为分隔符输出内容?
答案 0 :(得分:2)
要使用标签作为分隔符,请使用CSVFormat.TDF
:
CSVFormat csvInFormat = CSVFormat.TDF.withHeader(HEADERS);