Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
when dealing with specific situations like this (large size, specific syntax) it's best to write one of your own for best performance.. – thekashyap Sep 13 '12 at 16:19
Parsing CSV has nothing to do with Java EE!!! – Sean Patrick Floyd Sep 13 '12 at 16:19

closed as not constructive by Nambari, BalusC, Jim Garrison, casperOne Sep 13 '12 at 17:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 4 down vote accepted

I've used SuperCSV the ICsvBeanReader#read. It appears as though it reads a single line but I haven't reviewed the implementation

class ReadingObjects {
  public static void main(String[] args) throws Exception{
    ICsvBeanReader inFile = new CsvBeanReader(new FileReader("foo.csv"), CsvPreference.EXCEL_PREFERENCE);
    try {
      final String[] header = inFile.getCSVHeader(true);
      UserBean user;
      while( (user = inFile.read(UserBean.class, header, processors)) != null) {
        System.out.println(user.getZip());
      }
    } finally {
      inFile.close();
    }
  }
}

Without further criteria it's hard to identify the 'best' CSV parser. However, I used SuperCSV because it could return an object rather than a list / array; this suited my needs.

share|improve this answer

I usually use opencsv to parse csv files. It parses files sequentially but i don't know how it handles escape quotes and characters outside of the printable ASCII.

Check http://opencsv.sourceforge.net/

share|improve this answer
opencsv handles escape and quotes very well. – bugs_ May 2 at 17:40

Not the answer you're looking for? Browse other questions tagged or ask your own question.