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

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

相关推荐
camellias_2 小时前
【无标题】
java·tomcat
咸鱼2.03 小时前
【java入门到放弃】需要背诵
java·开发语言
椰猫子3 小时前
Java:异常(exception)
java·开发语言
win x4 小时前
Redis 使用~如何在Java中连接使用redis
java·数据库·redis
星晨雪海4 小时前
基于 @Resource 的支付 Service 多实现类完整示例
java·开发语言
阿维的博客日记4 小时前
什么是逃逸分析
java·juc
Ricky_Theseus5 小时前
C++右值引用
java·开发语言·c++
Rick19935 小时前
Java内存参数解析
java·开发语言·jvm
我是大猴子5 小时前
Spring代理类为何依赖注入失效?
java·后端·spring
勿忘,瞬间5 小时前
多线程之进阶修炼
java·开发语言