I am looking for a best Java CSV Parser that process the records in a sequential manner as the CSV file will be too large.
The following are the things to be considered.
- Input CSV will be of big, so I am looking for sequential parser.
- Must be able to handle escape quotes and get rid of all characters outside the printable ASCII range.
I have gone through Flatpack csv, but I think it reads all the data, parses it and returns a dataset.
Thanks in advance.
Update (Sep 19, 2012)
I have found SuperCSV very useful and easy to use. By using this wonderful CSV Parser I was able to finish my task.
Thanks.

