February 19, 2008

HTML to Excel with JSP

response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition","attachment; filename=" + "vmd.xls");
String htmlTable = (String)request.getParameter("htmlTable");
out.print(htmlTable); //htmlTable is string which contains HTML table code.

No comments: