I am attempting to parse a csv file with opencsv. The last column in the file has a parameter which is actually json. This json is enclosed in "". The problem is opencsv is removing some " from inside the json causing my code to break.
CSVReader reader = new CSVReader(new FileReader("c:\\Json.csv"), ',');
nextLine = reader.readNext();
nextLine[6];
Has anyone seen this before?
example of json as found in the csv
"{"type":"Polygon","coordinates":[[[-66.9,18.05],[-66.9,18.05]]]}"