help in HSSF

Hi,

Can i use HSSF code inside my JSP? I have a JSP page which fetches data fom database(using servlet) and displays as HTML

table in the same JSP page itself.

Now i want to save this table as Excel by clicking a button.Can i include HSSF code in JSP itself may b in a function which gets called wen i click that button.

Please hepl me out.

[375 byte] By [DHANYAa] at [2008-3-3]
# 1
You can use the tag <@ page contentType = "application/vnd.ms-excel" %> for generating the excel sheets.Refer to this document for further information http://pdf.coreservlets.com/CSAJSP-Chapter11.pdf
sivasajjaa at 2007-7-16 > top of java,Enterprise & Remote Computing,AVK Portability...
# 2
You can use the tag <@ page contentType = "application/vnd.ms-excel" %> for generating the excel sheets.Refer to this document for further information http://pdf.coreservlets.com/CSAJSP-Chapter11.pdf
sivasajjaa at 2007-7-16 > top of java,Enterprise & Remote Computing,AVK Portability...
# 3
I have already tried that and i want solution using POI. Sorry i didnt mention it before.
DHANYAa at 2007-7-16 > top of java,Enterprise & Remote Computing,AVK Portability...
# 4
You can use HSSF with JSP. See the following link on creating xls files using POI http://jakarta.apache.org/poi/hssf/quick-guide.htmlAfter creating the xls file give the URL of the xls as the href for an anchor tag.
sivasajjaa at 2007-7-16 > top of java,Enterprise & Remote Computing,AVK Portability...