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]

Reply via email to