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 导出,并需要内容单元格统一左中对齐,以上方案是当前最稳定的做法。

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

相关推荐
曹轲恒2 小时前
jvm 局部变量表slot复用问题
java·开发语言·jvm
小王师傅662 小时前
【轻松入门SpringBoot】actuator健康检查(中)-group,livenessState,readinessState
java·spring boot·后端
青w韵2 小时前
最新SpringAI-1.1.2接入openai兼容模型
java·学习·ai·springai
222you2 小时前
SpringMVC的单文件上传
java·开发语言
培培说证2 小时前
2026大专跨境电商专业,想好就业考哪些证书比较好?
java
计算机毕设指导62 小时前
基于微信小程序的旅游线路定制系统【源码文末联系】
java·spring boot·微信小程序·小程序·tomcat·maven·旅游
goodlook01232 小时前
监控平台搭建-监控指标展示-Grafana篇(五)
java·算法·docker·grafana·prometheus
qq_12498707532 小时前
基于Spring Boot的微信小程序的智慧商场系统的设计与实现
java·spring boot·spring·微信小程序·小程序·毕业设计·计算机毕业设计
椰羊~王小美2 小时前
通用的导入、导出方法
java·spring boot
yaoxin5211232 小时前
277. Java Stream API - 去重与排序:Stream 中的 distinct() 与 sorted()
java·开发语言