基于阿里easyExcel包装的工具类,poi版本3.17,主要简化easyExcel的web代码,增加一部分样式的定制操作
- easy-excel-util #工具类依赖#
- my-base-common #测试使用的其他依赖#
- my-web #测试使用的web工程#
my-web基于SpringBoot ,默认不使用外置tomcat容器,使用外置容器时将WebServletInitializerConf的注释打开,并且将打包方式修改为war
调用AdminApplication中的Main方法启动内部tomcat容器
my-web中 EasyExcelUtilController
ExcelUtil.writeExcel(response,list,"导出测试","没有设定sheet名称", ExcelTypeEnum.XLSX,ExportTestModel.class);
my-web中 EasyExcelUtilController
List<ExportTestModel> list = ExcelUtil.readExcel(files.get(0),ExportTestModel.class);
- fontName
字体名称,直接翻译沉POI接口Font中的字体选择,String类型
- fontHeightInPoints
字号大小,short类型
- fontColor
字体颜色,POI,POI提供枚举中的IndexedColors
- bold
是否加粗,默认false,类型boolean
关键代码:
Font font = sheet.getWorkbook().createFont(); font.setFontName(value.cellFont().fontName()); font.setColor(value.cellFont().fontColor().index); font.setFontHeightInPoints(value.cellFont().fontHeightInPoints()); font.setBold(value.cellFont().bold());
- horizontalAlignment
对齐方式,使用POI中的枚举HorizontalAlignment设置
- fillBackgroundColor
背景颜色,使用POI中的枚举IndexedColors设置
style.setFillForegroundColor(value.fillBackgroundColor().index); style.setAlignment(value.horizontalalignment());