首页 > 其他分享 >excel追加数据

excel追加数据

时间:2022-10-31 23:24:43浏览次数:64  
标签:文件 excel destFile 追加 File excelWriter templateFile 数据 模板

File templateFile = new File(filePath, fileName);
File destFile = new File(filePath, "test.xlsx");
try {
if (templateFile.exists()) {
//追加数据,目标文件与原始文件不能是同一个文件名
//withTemplate()指定模板文件
excelWriter = EasyExcel.write().withTemplate(templateFile)
//.file() 指定目标文件,不能与模板文件是同一个文件
.file(destFile).autoCloseStream(false).build();
} else {
excelWriter = EasyExcel.write(templateFile, ElemPersonListExcel.class)
.build();
}
WriteSheet writeSheet = EasyExcel.writerSheet("人员清单")
.build();
excelWriter.write(elemPersonListExcelList, writeSheet);
} finally {
// 千万别忘记finish 会帮忙关闭流
if (excelWriter != null) {
excelWriter.finish();
}
}

if (destFile.exists()) {
//删除原模板文件,新生成的文件变成新的模板文件
templateFile.delete();
destFile.renameTo(templateFile);
}```

标签:文件,excel,destFile,追加,File,excelWriter,templateFile,数据,模板
From: https://www.cnblogs.com/treeofb/p/16846247.html

相关文章