Writing CSV file from java object
807603Feb 22 2008 — edited Feb 27 2008I am going to write a CSV file from a list of java objects. I can use easily FileWriter for this.
One suggested me to convert the java objects to an XML and then convert the XML to file using XSTL. He told this is more efficient than directly writing Java objects to file using FileWriter. Is it true?
Please reply. Thank u in advance.