I have this excel file "flat.csv" which has element data inside the file and would like to covert it into a flat xml file in java, would require some assistance on how to do that, being googling but could find a decent example. Any tips would help currently I'm just researching for information. Does necessary has to be code,just links to sites that I might not be aware of, for further knowledge on this topic
Asked
Active
Viewed 462 times
2 Answers
1
You can read CSV with this tool : JSefa and after, serialize your CSV in XML.
You can also use : OpenCsv for parsing CSV (small, simple, reliable and easy to use)
Xstream to parse/serialize XML (very easy to use, and creating fully human readable xml).
Some examples are available in web sites or google.
A previous stack over flow topic to help you : Java lib or app to convert CSV to XML file?

Community
- 1
- 1

LePeruvien
- 91
- 1
- 8
0
You can use DOM
api to convert csv file into xml file. This example might help you to create XML file.

Vimal Bera
- 10,346
- 4
- 25
- 47