我是靠谱客的博主 英俊雪糕,最近开发中收集的这篇文章主要介绍easy-poi以前端下载方式导出,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

easy-poi通过下载方式导出


//放入easyPoi中 导出
ExportParams params = new ExportParams("统计表", "统计表", ExcelType.XSSF);
params.setFreezeCol(2); //这个是列比较多时,固定2列
//ExportEntity 导出的模板,表头标题可通过@Excel(name="名称")设置
//userList
需要导出的数据,需要使用ExportEntity相同的字段
Workbook workbook = ExcelExportUtil.exportExcel(params, ExportEntity.class, userList);
String suffix = "";
if (workbook instanceof HSSFWorkbook) {
suffix = ".xls";
} else {
suffix = ".xlsx";
}
ServletOutputStream os = null;
try {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmss");
String s = LocalDateTime.now().format(formatter);
response.setContentType("application/force-download");
response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("统计表-" + s, "UTF-8") + suffix);
response.addHeader("FileName",URLEncoder.encode("统计表-"+s, "UTF-8")+suffix);
response.setHeader("Access-Control-Expose-Headers", "FileName");
os = response.getOutputStream();
workbook.write(os);
} catch (IOException e) {
throw new DataConflictException("文件下载失败!");
} finally {
if (os != null) {
try {
os.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}

学习注定是一条漫长又艰苦的道路,没有捷径可言,所有人都一样。熬过去,你就赢了!

最后

以上就是英俊雪糕为你收集整理的easy-poi以前端下载方式导出的全部内容,希望文章能够帮你解决easy-poi以前端下载方式导出所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部