I want to write a Object into CSV file.
For XML we have XStream like this
So if i want to convert object to CSV do we have any such library ?
EDIT: I want to pass my list of Bean to a method which should write all the fields of bean to CSV.
|
I want to write a Object into CSV file.
For XML we have XStream like this EDIT: I want to pass my list of Bean to a method which should write all the fields of bean to CSV. |
||||
|
|
|
First, serialization is writing the object to a file 'as it is'. AFAIK, you cannot choose file formats and all. The serialized object (in a file) has its 'own file format' If you want to write the contents of an object (or a list of objects) to a CSV file, you can do it yourself, it should not be complex. Looks like Java CSV Library can do this, but I have not tried this myself. EDIT: See following sample. This is no way foolproof, but you can build on this.
This is product (getters and setters hidden for readability on SO):
And this is how I tested:
Hope this helps. Cheers. |
|||||||
|
|
Two options I just ran into: |
|||
|
|
|
For easy CSV access, there is a library called OpenCSV. It really ease access to CSV file content. EDIT According to your update, I consider all previous replies as incorrect (due to their low-levelness). You can then go a completely diffferent way, the hibernate way, in fact ! By using the CsvJdbc driver, you can load your CSV files as JDBC data source, and then directly map your beans to this datasource. I would have talked to you about CSVObjects, but as the site seems broken, I fear the lib is unavailable nowadays. |
|||||||
|
|
It would be interesting to have a csv serializer as it would take up the minimal space compared to other serializing method. The closest support for java object to csv is stringutils provided by spring utils project arrayToCommaDelimitedString(Object[] arr) but it is far from being a serializer. Here is a simple utility which uses reflection to serialize value objects
} Here is an example value object
} and the code to run the util
Output:
|
|||
|
|
|
I wrote a simple class that uses
I think with some simple recursion these methods could be modified to handle any Java object, but for me this was adequate. |
|||
|
|