In our project we are having the requirement to export the JSP page into excel. We cannot use Apache POI or any other open source APIs. I came across the below mentioned simple way of doing
<%
response.setHeader("Content-Disposition", "attachment;filename=\"mult-table.xls\""); %> <%@ page contentType="application/vnd.ms-excel" %><table><tr><td>using image src to load images</td></tr></table>
The excel is generated but the image is not shown in the excel. In our JSP pages we are having many images which should also get exported into excel along with other data.hanks
Please let me know how to do it.
Thanks Ravi