easypoi导出excel不设置样式_EasyPOI 导出excel设置边框,背景颜色,字体样式

EasyPOI 导出excel设置边框,背景颜色,字体样式

EasyPOI 导出代码示例ExportParams exportParams = new ExportParams();

exportParams.setStyle(ExcelExportStyler.class); // 设置样式

Workbook workbook = ExcelExportUtil.exportExcel(exportParams, CallPoolExcelVo.class, voList);

其中 ExcelExportStyler 就是我的自定义样式类。

官方默认提供了一个样式枚局类 ExcelStyleType,但是在 4.2 的版本中,BORDER、COLOR 这两个已经被标记为淘汰,不建议继续使用。

官方地址介绍:https://opensource.afterturn.cn/doc/easypoi.html#304public enum ExcelStyleType {

NONE("默认样式", ExcelExportStylerDefaultImpl.class),

BORDER("边框样式", ExcelExportStylerBorderImpl.class),

COLOR("间隔行样式", ExcelExportStylerColorImpl.class);

....

}

所以,我们可以继承 ExcelExportStylerDefaultImpl  或者实现 IExcelExportStyler 接口,完善其中方法即可。public interface IExcelExportStyler {

/**

* 列表头样式

你可能感兴趣的:(easypoi导出excel不设置样式_EasyPOI 导出excel设置边框,背景颜色,字体样式)