目录
- 说明
说明
场景说明:对数据库或者其他数据源读取获取到数据,需要写入到excel完成下载功能,其中一个sheet是固定模板,只需要填充值,另一个sheet是动态的表头和数据需要填充。模板如下图,模板提前放在项目里,免得有问题。
在这个案例前还写过一个批量excel打包成zip包下载的,这里的案例和代码注释说明比较清晰,重复的在这里不再多说,建议先看完上一个案例实现再来看这个实现,避免踩坑出不来,跳转链接:EasyExcel 实现 批量生成多sheet多Excel打包zip下载
不多说 直接上代码:
@GetMapping("/upload-xls")
public void uploadXls() {
//初始化excel的数据体
List<Map<String, String>> maps = new LinkedList<>();
for (int i = 6; i < 13; i++) {
HashMap<String, String> map = new HashMap<>();
map.put("name", "小" + i);
map.put("age", "" + i);
maps.add(map);
}
ExcelWriter excelWriter;
try {
// 文件名(这里URLEncoder.encode可以防止中文乱码)
String fileName = URLEncoder.encode("四(二)班-数据导出", "UTF-8");
// 设置返回文件信息
response.setContentType("application/vnd.ms-excel");
response.setCharacterEncoding("utf-8");
response.setHeader("Content-Disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");
} catch (Exception e) {
log.info(e.getMessage(), e);
}
//获取模板文件,模板文件需放在 resource下
String templateExcelFileName = "upload.xlsx";
InputStream templateExcelInputStream = this.getClass().getClassLoader().getResourceAsStream(templateExcelFileName);
if (null == templateExcelInputStream) {
log.error("模板文件不存在!");
}
ByteArrayOutputStream outputStream = null;
ByteArrayOutputStream bos = cloneInputStream(templateExcelInputStream);
//动态sheet1 Excel表头
List<String> heads = Arrays.asList("name", "age");
List<List<String>> excelHeaders = heads.stream().map(Collections::singletonList).collect(Collectors.toList());
//动态sheet1 Excel数据
List<List<String>> excelDatas = excelDatas(heads, maps);
try {
InputStream copyInputStream = new ByteArrayInputStream(bos.toByteArray());
outputStream = new ByteArrayOutputStream();
excelWriter = EasyExcel.write(response.getOutputStream()).withTemplate(copyInputStream).excelType(ExcelTypeEnum.XLSX).build();
WriteSheet writeSheet = EasyExcel.writerSheet(0, "学校信息").build();
Map<String, Object> map = new HashMap<String, Object>();
map.put("schoolName", "新民小学");
map.put("className", "四(二)班");
map.put("count", maps.size());
map.put("uploadDate", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(System.currentTimeMillis()));
excelWriter.fill(map, writeSheet);
//动态填充表头和内容
WriteSheet attrSheet = EasyExcel.writerSheet(1, "班级学生信息").build();
attrSheet.setHead(excelHeaders);
excelWriter.write(excelDatas, attrSheet);
excelWriter.finish();
outputStream.flush();
outputStream.close();
copyInputStream.close();
} catch (Exception e) {
log.error(e.getMessage(), e);
} finally {
if (null != outputStream) {
try {
outputStream.flush();
outputStream.close();
} catch (IOException e) {
log.error("导出 excel 时关闭 outputStream 出现异常", e);
}
}
}
}
就先说到这
\color{#008B8B}{ 就先说到这}
就先说到这
在下
A
p
o
l
l
o
\color{#008B8B}{在下Apollo}
在下Apollo
一个爱分享
J
a
v
a
、生活的小人物,
\color{#008B8B}{一个爱分享Java、生活的小人物,}
一个爱分享Java、生活的小人物,
咱们来日方长,有缘江湖再见,告辞!
\color{#008B8B}{咱们来日方长,有缘江湖再见,告辞!}
咱们来日方长,有缘江湖再见,告辞!