I am trying to read a CSV file using the OpenCSV library. My data is in the following format in the CSV.
"No", "Name", "Address", "Date"
"1", "Harry", "River's Drive", "02/11/2016 00:00:01"
"2", "Tom", "Cover's Park", "03/11/2016 00:00:01"
It can have special characters. All works well when I use the readAll() from OpenCSV. However it fails to read the character ' in the data and gives error. Is there any way to escape and retain that character?