Skip to content
Morten Laukvik edited this page Oct 29, 2016 · 1 revision

To write the contents to a CSV file

csv.writeFile( new File("presidents.csv") );

To write the contents to a XML file

csv.writeXML( new File("presidents.xml") );

To write the contents to a JSON file

csv.writeXML( new File("presidents.json") );

To write the contents to a HTML file

csv.writeXML( new File("presidents.html") );

To write the contents to ResourceBundle(s)

csv.writeXML( new File("presidents.properties") );

Clone this wiki locally