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)?
|
closed as not constructive by Will♦ Nov 13 '12 at 15:12
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.
|
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 |
|||
|
|
|
Super CSV is a great choice for reading/parsing, validating and mapping CSV files to POJOs! We (the Super CSV team) have just released a new version (you can download it from SourceForge or Maven). Reading a CSV fileThe following example uses Example CSV fileHere is an example CSV file that represents responses to a survey. It has a header and 3 rows of data, all with 8 columns.
Defining the mapping from CSV to POJOEach row of CSV will be read into a SurveyResponse class, each of which has a List of Answers. In order for the mapping to work, your classes should be valid Javabeans (i.e have a default no-arg constructor and have getters/setters defined for each field). In Super CSV you define the mapping with a simple String array - each element of the array corresponds to a column in the CSV file. With
The following is the field mapping for this example - it uses a combination of these:
Conversion and ValidationSuper CSV has a useful library of cell processors, which can be used to convert the Strings from the CSV file to other data types (e.g. Date, Integer), or to do constraint validation (e.g. mandatory/optional, regex matching, range checking). Using cell processors is entirely optional - without them each column of CSV will be a String, so each field must be a String also. The following is the cell processor configuration for the example. As with the field mapping, each element in the array represents a CSV column. It demonstrates how cell processors can transform the CSV data to the data type of your field, and how they can be chained together.
ReadingReading with Super CSV is very flexible: you supply your own The code below is pretty self-explanatory.
Code:
Output:
More InformationYou can find a lot more information on the website! |
||||
|
|
|
I've had good success both parsing and writing CSV files from Java with OpenCSV. If you want to read or write Excel compatible spreadsheet with Java, the POI library from Apache is the way to go. |
|||||
|
|
Check out BeanIO |
|||
|
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! |
|||||||||||
|
|
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 |
|||
|
|
