vote up 0 vote down star

how can i export my table to excel sheet in jsp??

flag

0% accept rate

1 Answer

vote up 1 vote down

The easiest way would be to create a HTML table and send this HTML with the following response headers:

Content-type = application/vnd.ms-excel
Content-disposition = attachment;filename=whateverIsAppropriate.xls

Another option would be to create the Excel using Apache POI and then send that as the response.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.