How to remove double quotes from data in OpenCSV library?

85 Views Asked by At

I am creating a CSV file with some sample data with using two CSV libraries - Super CSV and Open CSV and this is how they are storing data in CSV file and text file - enter image description here

With Open CSV - there are some additional double quotes in the data and i want to remove them and make it behave as same as Super CSV.

When I am using .withQuoteChar(CSVWriter.NO_QUOTE_CHARACTER) it stores data like this - enter image description here

How to handle this case and make Open CSV behave as same as Super CSV?

0

There are 0 best solutions below