writing a text file from a jsp

Hi

I have a jsp which fetches data from a d/b based on certain parameters ...This page displays the results in a tabular form.Now i want to insert a button in this jsp page upon clicking which i will get the same results also in a text file...

How to go about this please suggest...

Thanks in advance

[339 byte] By [rohit29] at [2007-9-26 2:18:22]
# 1
Create a instance of DataOutputStream and use writeChars() method.// storing details in a text fileDataOutputStream newcc_dout=new DataOutputStream(new FileOutputStream(String.valueOf(new File("/path/",filename),true));newcc_dout.writeChars(values);
sngolla at 2007-6-29 9:19:20 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...