2
我正在使用ICsvListReader和ICsvListWriter讀取和寫入csv文件。
我發現csv文件中的空字符串被轉換爲null然後輸出。
我該如何避免這種情況發生。我試過創建一個新的CellProcessor:如何告訴SuperCSV不要將空字符串映射爲空
private CellProcessor[] getProcessors(int columnNumber){
CellProcessor[] processors = new CellProcessor[columnNumber];
for (int i=0; i< columnNumber; i++){
processors[i] = new ConvertNullTo("");
}
return processors;
}
但它仍然無法正常工作。
有什麼方法可以改變這個設置嗎?
嗨,謝謝你的回覆,但我不想總是應用引號,只是在空字符串上, – Jusleong