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?
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?
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.
I would recommend to use opencsv
What is opencsv?
opencsv is a very simple csv (comma-separated values) parser library for Java.