I am parsing a CSV file with opencsv and all the fields are separated by commas and are enclosed in double quotation marks. If a field contains double quotes, open CSV doesn't parse the file properly. An example below:
"aaa","b""bb","ccc"
Right now the constructor I am using is:
reader = new CSVReader(new FileReader(csvFile), ',', '"', 1);