Can you recommend a Java library for reading, parsing, validating and mapping rows in a comma separated value (CSV) file to Java value objects (JavaBeans)?
|
|
We have used http://opencsv.sourceforge.net/ with good success I also came across another question with good links: http://stackoverflow.com/questions/123/csv-file-to-xml |
||
|
|
|
|
I've had good success both parsing and writing CSV files from Java with OpenCVS. If you want to read or write Excel compatible spreadsheet with Java, the POI library from Apache is the way to go. |
|||
|
|
|
The CSV File to XML question asked previously seems to answer all my questions. OpenCSV (http://opencsv.sourceforge.net/) also does binding to JavaBeans using a Column Position Mapping Strategy
JSEFA (http://jsefa.sourceforge.net) also seems to do everything I need - particularly binding to Java objects - in addition to supporting FLR and XML |
||
|
|
|
|
I find Flatpack to be really good with handling quirky CSV files (escapes, quotes, bad records, etc.) |
|||
|
|
|
|
Hey, I have an open-source project for that: JFileHelpers. I think the main advantage is that it uses Java Annotations, take a look: If you have this bean:
And wants to parse this file:
All you have to do is this:
Also, it supports master-detail, date and format conversion, and a lot more. Let me know what you think! Best regards! |
||
|
|
|
|
Check out Apache Poi. Also check out CSVBeans. |
||
|
|
|
|
I can recommend SuperCSV. Simple to use, and did everything I needed. |
||
|
|
