jsp如何导出excle文档
需要导出excel位置添加导出按钮
<input type="button" class="CommonButton" value="导出Excel文档" name="download1" onclick="location.href='toexcel.jsp'">
toexcel.jsp页面设置contetTyep替换原有设置
<%@ page contentType="application/vnd.ms-excel; charset=gb2312"%>
<%
response.setHeader("Content-disposition","attachment; filename="+ java.net.URLEncoder.encode("xxxx表.xls", "UTF-8"));
%>
<body>
<table>
表格内容
</table>
</body>
可以根据想要的文件名修改xxx表.xls位置