我正在使用 apache commons CSV 来编写 csv 文件。我想坚持这个图书馆。当我正在编写一个 csv 文件时,在生成文件的第一列中,它包含双引号作为引号字符,其他列按预期生成。
我真的很想在这里去掉双引号。请在下面找到相同的代码。
CSVFormat format = CSVFormat.DEFAULT;
FileWriter fw = new FileWriter("Temp.csv");
CSVPrinter printer = new CSVPrinter(fw, format);
String[] temp = new String[4];
for(int i=0; i<4; i++) {
if(i==1)
temp[0] = "#";
else
temp[0] = "";
temp[1] = "hello" + (i+1);
temp[2] = "";
temp[3] = "test";
Object[] temp1 = temp[]
printer.printRecord(temp1);
}
fw.close();
printer.close();
临时文件
"",hello1,,test
"#",hello2,,test
"",hello3,,test
"",hello4,,test
我不希望在每一行的开头都有一个引号字符。我只想要一个不带引号的空字符串,与第 3 列相同。有人可以帮忙吗?