easyexcel导出头部样式设置,多个tab导出,头部自定义RGB颜色

news/2024/11/30 17:22:13/文章来源:https://www.cnblogs.com/liran123/p/18578654

alibaba easyexcel版本 3.0.5, poi版本 4.1.2 ,导出头部样式设置,多个tab导出,头部自定义RGB颜色

 

效果,头部三行,三个tab

 

 

下面贴出代码:

package com.alpha.erp.dto.accounts;import com.alibaba.excel.metadata.Head;
import com.alibaba.excel.metadata.data.WriteCellData;
import com.alibaba.excel.write.handler.context.CellWriteHandlerContext;
import com.alibaba.excel.write.metadata.style.WriteCellStyle;
import com.alibaba.excel.write.metadata.style.WriteFont;
import com.alibaba.excel.write.style.AbstractCellStyleStrategy;
import com.alibaba.excel.write.style.AbstractVerticalCellStyleStrategy;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.DefaultIndexedColorMap;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFColor;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;import java.util.Objects;/*** lr l*/
public class AccountsCellStyleWrapped extends AbstractCellStyleStrategy {@Overrideprotected void setHeadCellStyle(CellWriteHandlerContext context) {WriteCellData<?> cellData = context.getFirstCellData();CellStyle originCellStyle = cellData.getOriginCellStyle();if (Objects.isNull(originCellStyle)) {originCellStyle = context.getWriteWorkbookHolder().getWorkbook().createCellStyle();}// 设置背景颜色
        originCellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);WriteCellStyle writeCellStyle = cellData.getWriteCellStyle();writeCellStyle.setFillForegroundColor(null);if (context.getRowIndex() == 1) {((XSSFCellStyle) originCellStyle).setFillForegroundColor(new XSSFColor(new java.awt.Color(237, 237, 237), new DefaultIndexedColorMap()));} else {((XSSFCellStyle) originCellStyle).setFillForegroundColor(new XSSFColor(new java.awt.Color(217, 226, 243), new DefaultIndexedColorMap()));}// 重点!!! 必须设置OriginCellStyle
        cellData.setOriginCellStyle(originCellStyle);WriteFont font = new WriteFont();font.setBold(true);font.setFontHeightInPoints((short) 14);writeCellStyle.setWriteFont(font);}@Overrideprotected void setContentCellStyle(CellWriteHandlerContext context) {WriteCellData<?> cellData = context.getFirstCellData();CellStyle originCellStyle = cellData.getOriginCellStyle();if (Objects.isNull(originCellStyle)) {originCellStyle = context.getWriteWorkbookHolder().getWorkbook().createCellStyle();}// 设置背景颜色
        originCellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);WriteCellStyle writeCellStyle = cellData.getWriteCellStyle();writeCellStyle.setWrapped(true);WriteFont font = new WriteFont();font.setBold(false);font.setFontHeightInPoints((short) 12);writeCellStyle.setWriteFont(font);}
}
package com.orderplus.core.util.excel;import cn.hutool.core.collection.CollUtil;
import com.alibaba.excel.enums.CellDataTypeEnum;
import com.alibaba.excel.metadata.Head;
import com.alibaba.excel.metadata.data.WriteCellData;
import com.alibaba.excel.write.metadata.holder.WriteSheetHolder;
import com.alibaba.excel.write.style.column.AbstractColumnWidthStyleStrategy;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.ss.usermodel.Cell;import java.util.HashMap;
import java.util.List;
import java.util.Map;/*** lr*/
public class ExcelCellWidthWrappedStyleUtils extends AbstractColumnWidthStyleStrategy {private static final int MAX_COLUMN_WIDTH = 255;private Map<Integer, Map<Integer, Integer>> CACHE = new HashMap<>(8);@Overrideprotected void setColumnWidth(WriteSheetHolder writeSheetHolder, List<WriteCellData<?>> list, Cell cell, Head head, Integer integer, Boolean isHead) {boolean needSetWidth = isHead || !CollUtil.isEmpty(list);if (needSetWidth) {Map<Integer, Integer> maxColumnWidthMap = CACHE.computeIfAbsent(writeSheetHolder.getSheetNo(), k -> new HashMap<>(16));Integer columnWidth = this.dataLength(list, cell, isHead);if (columnWidth >= 0) {if (columnWidth > 255) {columnWidth = 255;}Integer maxColumnWidth = maxColumnWidthMap.get(cell.getColumnIndex());if (maxColumnWidth == null || columnWidth > maxColumnWidth) {maxColumnWidthMap.put(cell.getColumnIndex(), columnWidth);writeSheetHolder.getSheet().setColumnWidth(cell.getColumnIndex(), columnWidth * 256);}if (CollUtil.isNotEmpty(writeSheetHolder.getExcelWriteHeadProperty().getHeadMap())) {Map<Integer, Head> headMap = writeSheetHolder.getExcelWriteHeadProperty().getHeadMap();Head headRw = headMap.get(cell.getColumnIndex());if(headRw==null ||headRw.getColumnWidthProperty()==null){return;}Integer width = headRw.getColumnWidthProperty().getWidth();if (width != null) {maxColumnWidthMap.put(cell.getColumnIndex(), width);writeSheetHolder.getSheet().setColumnWidth(cell.getColumnIndex(), width * 256);}}}}}private Integer dataLength(List<WriteCellData<?>> cellDataList, Cell cell, Boolean isHead) {if (isHead) {return cell.getStringCellValue().getBytes().length;} else {WriteCellData cellData = cellDataList.get(0);CellDataTypeEnum type = cellData.getType();if (type == null) {return -1;}switch (type) {case STRING:if (cellData.getStringValue().contains("\n")) {return StringUtils.substringBefore(cellData.getStringValue(), "\n").getBytes().length;}return cellData.getStringValue().getBytes().length + 1;case BOOLEAN:return cellData.getBooleanValue().toString().getBytes().length;case NUMBER:return cellData.getNumberValue().toString().getBytes().length;default:return -1;}}}
}

 

 

上面两个是样式和宽度设置类

private void exportReportNew(List<ErpSupplierAccountsInfoListKaVo> productPutWatchListVos, HttpServletResponse response) throws IOException {String fileName = "报告导出";fileName = URLEncoder.encode(fileName, "UTF-8");response.setContentType("application/vnd.ms-excel");response.setCharacterEncoding("utf-8");response.setHeader("Content-disposition", "attachment;filename=" + fileName + ";filename*=utf-8''" + fileName + ".xlsx");ServletOutputStream outputStream = response.getOutputStream();ExcelWriter excelWriter = null;try {excelWriter = EasyExcel.write(outputStream).excelType(ExcelTypeEnum.XLSX)  // 设置文件类型为 XLSX.registerWriteHandler(new AccountsCellStyleWrapped()).registerWriteHandler(new ExcelCellWidthWrappedStyleUtils()).build();WriteSheet sheet1 = EasyExcel.writerSheet("月欠款及还款计划明细").head(AccountInfoReportExcel.class).build();excelWriter.write(buildInfoExcelData(productPutWatchListVos), sheet1);WriteSheet sheet2 = EasyExcel.writerSheet("月分销欠款风险").head(AccountInfoCustomerReportExcel.class).build();excelWriter.write(buildCustomerExcelData(productPutWatchListVos), sheet2);WriteSheet sheet3 = EasyExcel.writerSheet("月供应商应收").head(AccountInfoSupplierReportExcel.class).build();excelWriter.write(buildSupplierExcelData(productPutWatchListVos), sheet3);} catch (Exception e) {throw new RuntimeException(e);} finally {if (excelWriter != null) {excelWriter.finish();}outputStream.flush();outputStream.close();}}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/844189.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

管理模块源码

原文地址:https://bbs.huaweicloud.com/blogs/441056 本文翻译自:https://go.dev/doc/modules/managing-source当你在开发一个用于发布给其他人使用的模块时,可以通过遵循该主题中描述的仓库约定来确保您的模块更易于其他开发人员使用。 该模块描述了在管理模块仓库时可能采…

报错/core/library/think/File.php 第 153 行左右 mkdir():Permission denied

报错/core/library/think/File.php 第 153 行左右 mkdir():Permission denied这个提示是权限不足, 建议检查网站目录权限如果修改权限无效, 建议修改php版本测试。 扫码添加技术【解决问题】专注中小企业网站建设、网站安全12年。熟悉各种CMS,精通PHP+MYSQL、HTML5、CSS3…

PbootCMS提示传递的模型编码参数有误,请核对后重试!

PbootCMS提示传递的模型编码参数有误,请核对后重试!解决办法: 程序这2个核心文件夹备份,apps 和 core 改名 apps1 和 core1 做为备份,下载默认程序把程序包里的apps 和 core上传上去即可。扫码添加技术【解决问题】专注中小企业网站建设、网站安全12年。熟悉各种CMS,精通…

手把手教你华为鸿蒙开发之第五节

华为鸿蒙开发:条件语句和分支逻辑引言 在编程中,根据不同的条件执行不同的代码块是常见的需求。华为鸿蒙操作系统的开发同样涉及到这些基础的控制流语句。本文将通过 DevEco Studio 介绍鸿蒙开发中的条件语句和分支逻辑,包括 if 语句、switch 语句和三元条件表达式,以及如何…

PbootCMS升级完显示浏览量 副标题 错误了咋解决

PbootCMS升级完显示浏览量错误了咋解决 解决办法:修改模板标签调用代码扫码添加技术【解决问题】专注中小企业网站建设、网站安全12年。熟悉各种CMS,精通PHP+MYSQL、HTML5、CSS3、Javascript等。承接:企业仿站、网站修改、网站改版、BUG修复、问题处理、二次开发、PSD转HTML…

PbootCMS发送失败,503 Error:need EHLO and AUTH first!

PbootCMS后台发送邮箱没设置好导致的(503 Error:need EHLO and AUTH first!) 解决办法: 全局配置 - 配置参数 -邮件通知 -设置邮箱参数扫码添加技术【解决问题】专注中小企业网站建设、网站安全12年。熟悉各种CMS,精通PHP+MYSQL、HTML5、CSS3、Javascript等。承接:企业…

【消息队列】RabbitMq-交换机模型

RabbitMQ交换机模型Fanout exchange 广播形式 消息会以广播形式发送给每个绑定该exchange的队列中。 Direct exchange 定向路由 在控制台新建了一个exchange,type指定为directTopic exchange 以.来分割多个单词,并用通配符来指定routing key。 #:表示0个过多个字母 *:表示1…

网站错位、乱码以及CSS不加载通常是由于以下几个原因造成的

网站错位、乱码以及CSS不加载通常是由于以下几个原因造成的:字符编码问题:网页的字符编码设置不正确,导致显示乱码。 CSS文件路径错误:CSS文件的路径配置错误,浏览器无法找到并加载CSS文件。 HTTP请求问题:CSS文件所在的服务器出现问题,导致无法正确响应请求。 浏览器缓…

一款.NET开源的Windows资源管理器标签页工具

前言 今天大姚给大家分享一款基于.NET开发的可以让你在Windows资源管理器中使用Tab多标签功能的小工具:QTTabBar。工具介绍 QTTabBar是一款基于.NET开发的可以让你在Windows资源管理器中使用Tab多标签功能的小工具。从此以后工作时不再遍布文件夹窗口,还有给力的文件夹预览功…

20222317 2024-2025-1 《网络与系统攻防技术》实验八实验报告

1.实验内容 (1)Web前端HTML:能正常安装、启停Apache。理解HTML,理解表单,理解GET与POST方法,编写一个含有表单的HTML。 (2)Web前端javascipt:理解JavaScript的基本功能,理解DOM。 在(1)的基础上,编写JavaScript验证用户名、密码的规则。在用户点击登陆按钮后回显“欢迎…

手把手教你华为鸿蒙开发之第四节

华为鸿蒙开发:数组操作基础引言 在华为鸿蒙操作系统的开发中,数组是一种常用的数据结构,用于存储和管理一系列有序的元素。本文将通过 DevEco Studio 介绍数组的基本操作,包括数组的定义、取值、修改、添加和删除元素,以及使用 splice 方法在任意位置进行更复杂的数组操作…

【NLP高频面题 - LLM架构篇】旋转位置编码RoPE相对正弦位置编码有哪些优势?

【NLP高频面题 - LLM架构篇】旋转位置编码RoPE相对正弦位置编码有哪些优势? 重要性:⭐⭐⭐【NLP高频面题 - LLM架构篇】旋转位置编码RoPE相对正弦位置编码有哪些优势? 重要性:⭐⭐⭐ 💯NLP Github 项目:NLP 项目实践:fasterai/nlp-project-practice 介绍:该仓库围绕着…