Im trying to append row, using CSVWriter by uniVocity
When i set
settings.setQuoteAllFields(true);
then all fields are quoted, this is logical, but can i set any settings NOT to apply quotes in empty or null fields?
For example, when i call
String stringRow = writer.writeRowToString(new String[] {"null","","","123"})
the stringRow is
"";"";"";"123"
but i need
;;;"123"
How can i set this?