Description
In CSVPrinter, there is the print method:
public void print(String value) {
boolean quote = false;
if (value.length() > 0) {
char c = value.charAt(0);
if (newLine
&& (c < '0'
you should do null check as well before the if (value.length)
Attachments
Issue Links
- duplicates
-
CSV-13 NullPointerException in CSVPrinter.print()/println()
- Closed