But how do you know the data is a cell and not a cell format record,
etc?
-----Original Message-----
From: Fallows, Andrew [mailto:[EMAIL PROTECTED]
Sent: Monday, June 25, 2007 3:30 PM
To: POI Users List
Subject: RE: Generate csv file using poi
I don't know if it is possible using (a) POI class(es), but I did it
with no trouble using regular Java constructs and the FileWriter class:
FileWriter fileOut = new FileWriter("F:/(path)/(filename).csv",true);
fileOut.write((data) + "," + (data) + "," + (data)); fileOut.flush();
Shouldn't be any more to it. I've actually used this to simplify from
Excel format to CSV after performing other operations on the data I was
using.
HTH,
Andrew
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional
commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]