Skip to content
Advertisement

Unwanted double quotes in generated CSV file

I have created a CSV file using the Java code below:

JavaScript

I am getting the CSV file, but the content of the file has unwanted double quotes.

Eg. “ABC”,”123″,”KDNJ”

I don’t get from where these double quotes are added.

Advertisement

Answer

This worked for me

JavaScript

See the CSVWriter javadoc

Advertisement