EasyExcel 3.3.2 内容单元格左中对齐不生效的最终解决方案

在 EasyExcel 3.3.2 中,很多人会遇到"内容单元格对齐设置不生效"的问题。通常是因为默认的 FillStyleCellWriteHandler 在后续执行中覆盖了你手动设置的样式。本文给出一个稳定可用的最终方案:保证自定义样式在最后执行,并清理掉 WriteCellData 的样式引用,避免再次被覆盖。

适用场景

  • 使用 EasyExcel 3.3.2 写 Excel
  • 需要内容单元格统一"左对齐 + 垂直居中"
  • 当前样式不生效或被覆盖

最终方案(可直接使用)

1. 新增内容单元格样式处理器

复制代码
package com.agentspace.aichat.util.excel;

import com.alibaba.excel.constant.OrderConstant;
import com.alibaba.excel.metadata.data.WriteCellData;
import com.alibaba.excel.write.handler.CellWriteHandler;
import com.alibaba.excel.write.handler.context.CellWriteHandlerContext;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.Workbook;

import java.util.HashMap;
import java.util.Map;

/**
 * 内容单元格左对齐+垂直居中
 */
public class LeftCenterStyleStrategy implements CellWriteHandler {

    private final Map<Short, CellStyle> styleCache = new HashMap<>();

    @Override
    public int order() {
        return OrderConstant.FILL_STYLE + 1;
    }

    @Override
    public void afterCellDispose(CellWriteHandlerContext context) {
        if (Boolean.TRUE.equals(context.getHead())) {
            return;
        }
        Cell cell = context.getCell();
        if (cell == null) {
            return;
        }
        cell.setCellStyle(getDataCellStyle(cell));

        WriteCellData<?> cellData = context.getFirstCellData();
        if (cellData != null) {
            cellData.setWriteCellStyle(null);
        }
    }

    private CellStyle getDataCellStyle(Cell cell) {
        CellStyle base = cell.getCellStyle();
        short baseIndex = base != null ? base.getIndex() : 0;
        CellStyle cached = styleCache.get(baseIndex);
        if (cached != null) {
            return cached;
        }
        Workbook workbook = cell.getSheet().getWorkbook();
        CellStyle created = workbook.createCellStyle();
        if (base != null) {
            created.cloneStyleFrom(base);
        }
        created.setAlignment(HorizontalAlignment.LEFT);
        created.setVerticalAlignment(VerticalAlignment.CENTER);
        styleCache.put(baseIndex, created);
        return created;
    }
}

为什么这个方案有效?

  • order() 设置为 OrderConstant.FILL_STYLE + 1,确保在 EasyExcel 默认样式处理器之后执行,避免被覆盖。
  • 使用 cloneStyleFrom 保留原本的边框、字体、格式,只替换对齐方式。
  • 清理 WriteCellData 的样式引用,防止后续再次覆盖。

总结

只要你使用 EasyExcel 3.3.2 进行 Excel 导出,并需要内容单元格统一左中对齐,以上方案是当前最稳定的做法。

若后续需要表头也统一对齐,或加上自动换行、边框、字体等,也可以基于此策略扩展。

相关推荐
唐青枫1 天前
Java JDBC 实战指南:从 Connection 到事务和连接池
java
一个做软件开发的牛马1 天前
MyBatis-Plus 从零实战:完整搭建可运行 Demo,BaseMapper 零 SQL、Wrapper 条件构造、分页插件与代码生成器详解
java·后端
用户3721574261351 天前
Java 处理 PDF 图片:提取 PDF 中的图片,并压缩 PDF 图片体积
java
用户3721574261351 天前
Java 打印 Word 文档:从基础打印到高级设置
java
用户3521802454752 天前
当 Prompt 学会"热更新":Spring Boot × Nacos3 AI 实战
java·spring boot·ai编程
东坡白菜2 天前
破局全栈:一个前端开发的Java入门实战记录(1)
java·全栈
唐青枫2 天前
Java Tomcat 实战指南:从 Servlet 容器到 Spring Boot 部署
java
wsaaaqqq2 天前
roudan:自由选择实体、灵活操作数据、快速写入数据库的 Java 框架
java
plainGeekDev2 天前
null 判断 → Kotlin 可空类型
android·java·kotlin
糖拌西瓜皮2 天前
Java开发者视角:深入理解Node.js异步编程模型
java·后端·node.js