Any good library to read and write csv files? [duplicate]

Possible Duplicate:
CSV API for Java
Can you recommend a Java library for reading (and possibly writing) CSV files?

I am wondering if there is a good library that supports reading and writing csv files?


Solution 1:

I use Apache Commons CSV. http://commons.apache.org/csv/

There is also Super CSV, but I haven't tried it. http://super-csv.github.io/super-csv/

It is also not such a big deal to write something on your own IMO.

Solution 2:

http://opencsv.sourceforge.net/