欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > EasyExcel 模板+公式填充

EasyExcel 模板+公式填充

2024/12/28 22:48:50 来源:https://blog.csdn.net/github_39423829/article/details/144694726  浏览:    关键词:EasyExcel 模板+公式填充

使用 CellWriteHandler 的实现类来实现公式写入

@Data
@NoArgsConstructor
public class CustomCellWriteHandler implements CellWriteHandler {private int maxRowNum = 2000;// 动态传入列表数量public CustomCellWriteHandler(int maxRowNum) {this.maxRowNum = maxRowNum;}@Overridepublic void afterCellDispose(CellWriteHandlerContext context) {CellWriteHandler.super.afterCellDispose(context);// 可获取 sheetNo 或 sheetName 用于判断// Integer sheetNo = context.getWriteSheetHolder().getSheetNo();Cell cell = context.getCell();//行int rowNum = cell.getRowIndex();//列int columnNum = cell.getColumnIndex();// 对第3行第3列的单元格进行替换,设置为公式if (rowNum == 2 && columnNum == 2) {cell.setCellFormula("SUM(C4:C" + maxRowNum + ")");}}
}

注册填充

// 构建导出表文件
ClassPathResource classPathResource = new ClassPathResource("excel_template/BaseInfoExport.xls");
ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream()).withTemplate(classPathResource.getInputStream()).excelType(ExcelTypeEnum.XLS).autoCloseStream(Boolean.FALSE).build();
Map<String, Object> map = MapUtils.newHashMap();
// 在 fill 中必须要添加对应的模板,否则会变为空白
map.put("summary", "");
// 构造导出配置
WriteSheet writeSheet = EasyExcel.writerSheet(5).registerWriteHandler(new CustomCellWriteHandler(dataList.size() + 3)).build();
// 执行填充,先填充 dataList,再填充 map
excelWriter.fill(dataList, writeSheet);
excelWriter.fill(map, writeSheet);
excelWriter.finish();

注意:如果使用了 FillConfig fillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();
会动态添加新行。如果先填充了 map 再填充列表,会把 map 填充的公式给拉长,导致填充位置与输入不一致。可以先填充列表,再填充 map。

注意2:此方法对 xls 格式的文件有效,对 xlsx 的不生效,能输出公式但不会自动计算。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com