Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

exporting jsp table into excel file

843836Mar 3 2004 — edited Mar 4 2004
I Have a jsp screen with a table and i need to export this, after pressing a button, to a excel file.

here is the code :


function fDownload () {
<% response.setContentType("application/vnd.ms-excel"); %>
<% response.setHeader("Content-disposition", "attachment; filename=fileName.xls"); %>
}

when jsp is executed, he doesn't show me anithyng except the option for downloading to an excel file, without the existing screen showed up.

can someone give me an example that i can use?

thank's

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 1 2004
Added on Mar 3 2004
3 comments
1,170 views