POM
<dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.1.1</version> </dependency>
主要代码
String filePath ="D:\\project\\test1.xls";//生成文件 String templateFilePath="D:\\project\\test_my.xls";//模板 // 这里 会填充到第一个sheet, 然后文件流会自动关闭 Map<String, Object> map = MapUtils.newHashMap(); map.put("data1", "张三"); map.put("data2", "5234"); EasyExcel.write(filePath).withTemplate(templateFilePath).sheet().doFill(map);
模板:
填充字段:{data1}
List 使用:{.data1}
生成:
标签:map,sheet,填充,easyExcel,excel,生成,data1,模板 From: https://www.cnblogs.com/hanjun0612/p/16821818.html