失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > EasyExcel 单元格背景颜色 字体颜色使用2种设置颜色方法(IndexedColors中定义的颜

EasyExcel 单元格背景颜色 字体颜色使用2种设置颜色方法(IndexedColors中定义的颜

时间:2023-12-27 15:11:33

相关推荐

EasyExcel 单元格背景颜色 字体颜色使用2种设置颜色方法(IndexedColors中定义的颜

1 Maven配置

<!--hutool工具包--><dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>5.5.1</version></dependency><!-- EasyExcel文档处理工具 --><dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>2.2.8</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency>

2 调试代码

/*** 导出(单元格背景颜色、字体颜色使用2种设置颜色方法(IndexedColors中定义的颜色,自定义RGB颜色)实现)** @param response*/@GetMapping("/exportStyleColor")public void exportStyleColor(HttpServletResponse response) {try {//生成表格数据List<List<Object>> dataList = new ArrayList<>();dataList.add(new ArrayList<>(Arrays.asList(new Object[]{"表头11", "表头2", "表头3", "表头4"})));dataList.add(new ArrayList<>(Arrays.asList(new Object[]{"表头1", "表头2", "表头3", "表头4"})));dataList.add(new ArrayList<>(Arrays.asList(new Object[]{"表头31", "表头2", "表头3", "表头4"})));//导出文件String fileName = new String("文件名称.xlsx".getBytes(), "UTF-8");List<CellStyleModel> cellStyleList = new ArrayList<>();//设置字体颜色//使用IndexedColors中定义的颜色cellStyleList.add(CellStyleModel.createFontColorCellStyleModel("模板", 0, 0, IndexedColors.BLUE));//使用自定义RGB颜色cellStyleList.add(CellStyleModel.createFontColorCellStyleModel("模板", 0, 1, 119, 119, 119));XSSFColor fontColor = CellStyleModel.getRGBColor(225, 0, 0);cellStyleList.add(CellStyleModel.createFontColorCellStyleModel("模板", 0, 2, fontColor));//设置单元格背景颜色//使用IndexedColors中定义的颜色cellStyleList.add(CellStyleModel.createBackgroundColorCellStyleModel("模板", 1, 0, IndexedColors.PINK));//使用自定义RGB颜色cellStyleList.add(CellStyleModel.createBackgroundColorCellStyleModel("模板", 1, 1, 119, 119, 119));XSSFColor backgroundColor = CellStyleModel.getRGBColor(225, 0, 0);cellStyleList.add(CellStyleModel.createBackgroundColorCellStyleModel("模板", 1, 2, backgroundColor));response.addHeader("Content-Disposition", "filename=" + fileName);//设置类型,扩展名为.xlsresponse.setContentType("application/vnd.ms-excel");ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream()).registerWriteHandler(new CustomCellStyleHandler(cellStyleList)).build();WriteSheet writeSheet = EasyExcel.writerSheet("模板").build();excelWriter.write(dataList, writeSheet);//千万别忘记finish 会帮忙关闭流excelWriter.finish();} catch (Exception e) {e.printStackTrace();}}

3 调试结果

注:

(1)有关字体样式更详细的设置请查看以下博客。

EasyExcel 设置字体样式(字体、字体大小、字体颜色、字体加粗、字体斜体、字体下划线、字体上标下标、字体删除线)/qq_38974638/article/details/117388442

(2)有关CellStyleModel和CustomCellStyleHandler的源码请查看以下博客。

EasyExcel 批量设置单元格样式(字体样式、背景颜色)/qq_38974638/article/details/114841208

旭东怪的个人空间_哔哩哔哩_Bilibili旭东怪,人生低谷不可怕,可怕的是坚持不到人生转折点的那一天;旭东怪的主页、动态、视频、专栏、频道、收藏、订阅等。哔哩哔哩Bilibili,你感兴趣的视频都在B站。/484264966?spm_id_from=333.1007.0.0

EasyExcel 单元格背景颜色 字体颜色使用2种设置颜色方法(IndexedColors中定义的颜色 自定义RGB颜色)实现

如果觉得《EasyExcel 单元格背景颜色 字体颜色使用2种设置颜色方法(IndexedColors中定义的颜》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。