jsp将页面的响应方式改为excel

生成excel 方法

<!-- 将页面的响应方式改为excel -->
<%
response.setContentType("application/vnd.ms-excel");
response.addHeader("Content-Disposition", "attachment;filename=" + new String(("客户积分统计表").getBytes("gb2312"),"iso8859-1") + ".xls");
%>

其余的是jsp页面 放一个table

猜你喜欢

转载自blog.csdn.net/Aseasonv/article/details/78712068