jsp 文件导出到Excel

Posted 萌萌超人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp 文件导出到Excel相关的知识,希望对你有一定的参考价值。

Java代码加:
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment; filename=" + new String((userExpandDto.getRealname() + "学员个人档案").getBytes(),"ISO8859-1") + ".xls");
jsp页面加:
<html xmlns:x="urn:schemas-microsoft-com:office:excel">
<head>
<!-- 显示网格线 -->
<xml>
<x:ExcelWorkbook>
<x:ExcelWorksheets>
<x:ExcelWorksheet>
<x:Name>excel</x:Name>
<x:WorksheetOptions>
<x:Print>
<x:ValidPrinterInfo/>
</x:Print>
</x:WorksheetOptions>
</x:ExcelWorksheet>
</x:ExcelWorksheets>
</x:ExcelWorkbook>
</xml>
<!-- 显示网格线 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>






















以上是关于jsp 文件导出到Excel的主要内容,如果未能解决你的问题,请参考以下文章

jsp程序再linux下运行数据库导出excel文件,导不出,界面一片空白,windows下运行导出exel文件可以

jsp如何导出excel

JSP页面将数据从mysql导出到excel的Java代码

jsp导入excel到DB的问题

jsp导出到Excel

jsp调用java方法导出excel为啥会弹出保存或下载的对话框,调用完之后直接将文件保存到指定路径下即可。