up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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