生成excel文件(有备注和表头的情况)

要使用 Java 导出 Excel 文件,并且通过 @ExcelProperty 注解进行列的映射,可以利用 EasyExcel 库。EasyExcel 是阿里巴巴开源的一款高性能 Excel 读写工具,它支持通过注解将类与 Excel 的列进行映射,简化了 Excel 操作的复杂性。

前提准备

  • 添加 EasyExcel 依赖到 pom.xml 文件中:

    <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.1.0</version> </dependency>

Excel 导出实现

  1. 定义导出数据的 Java 类 首先,需要定义一个类来映射 Excel 表格中的每一列。

    import com.alibaba.excel.annotation.ExcelProperty;
    import com.alibaba.excel.annotation.WriteStyle;

    import java.io.Serializable;

    public class EmployeeExcel implements Serializable {

    复制代码
     // 第一行备注信息
     @ExcelProperty("工号")
     private String employeeId;  // 工号(6位文本)
    
     @ExcelProperty("姓名")
     private String name;
    
     @ExcelProperty("操作类型")
     private String operationType;
    
     @ExcelProperty("部门全称")
     private String departmentName;
    
     @ExcelProperty("汇报上级")
     private String supervisor;
    
     @ExcelProperty("工作城市")
     private String workCity;
    
     @ExcelProperty("社保城市")
     private String socialSecurityCity;
    
     @ExcelProperty("职位全称")
     private String positionTitle;
    
     @ExcelProperty("HC编码")
     private String hcCode;
    
     @ExcelProperty("群组")
     private String group;
    
     @ExcelProperty("一级部门")
     private String firstLevelDepartment;
    
     @ExcelProperty("二级部门")
     private String secondLevelDepartment;
    
     @ExcelProperty("三级部门")
     private String thirdLevelDepartment;
    
     @ExcelProperty("四级部门")
     private String fourthLevelDepartment;
    
     @ExcelProperty("五级部门")
     private String fifthLevelDepartment;
    
     @ExcelProperty("六级部门")
     private String sixthLevelDepartment;
    
     @ExcelProperty("七级部门")
     private String seventhLevelDepartment;
    
     @ExcelProperty("汇报上级工号")
     private String supervisorEmployeeId;
    
     @ExcelProperty("汇报上级姓名")
     private String supervisorName;
    
     @ExcelProperty("工作城市")
     private String workCity2;  // 注意列名可以重复,需要做区分
    
     @ExcelProperty("社保城市(无需填写)")
     private String socialSecurityCity2;
    
     @ExcelProperty("岗位ID编号")
     private String positionId;
    
     @ExcelProperty("是否带编调整")
     private String isAdjustment;
    
     @ExcelProperty("HC编码(非带编调整则该项是必填)")
     private String hcCodeForAdjustment;
    
     @ExcelProperty("校验未通过原因")
     private String validationFailureReason;
    
     // Getter and Setter methods
     public String getEmployeeId() {
         return employeeId;
     }
    
     public void setEmployeeId(String employeeId) {
         this.employeeId = employeeId;
     }
    
     // 其他字段的 Getter 和 Setter 方法

    }

  2. 使用 EasyExcel 导出数据 然后,可以利用 EasyExcel 库来导出数据。接下来是 Excel 导出的核心代码。

    import com.alibaba.excel.EasyExcel;
    import com.alibaba.excel.write.builder.ExcelWriterBuilder;
    import com.alibaba.excel.write.style.AbstractCellStyleStrategy;
    import com.alibaba.excel.write.style.FillPatternType;
    import com.alibaba.excel.write.style.HorizontalAlignmentStyleStrategy;
    import org.apache.poi.ss.usermodel.*;

    import java.util.ArrayList;
    import java.util.List;

    public class ExcelExportExample {

    复制代码
     public static void main(String[] args) {
         // 数据列表
         List<EmployeeExcel> employeeExcelList = new ArrayList<>();
         
         // 模拟添加数据
         EmployeeExcel employee = new EmployeeExcel();
         employee.setEmployeeId("123456");
         employee.setName("张三");
         employee.setOperationType("新增");
         // 填充其他字段...
         
         employeeExcelList.add(employee);
    
         // 导出 Excel 文件
         exportExcel(employeeExcelList);
     }
    
     public static void exportExcel(List<EmployeeExcel> data) {
         // Excel 文件路径
         String fileName = "员工信息.xlsx";
         
         // 创建 ExcelWriter
         EasyExcel.write(fileName, EmployeeExcel.class)
                 .sheet("员工信息")
                 .doWrite(data);
     }

    }

  3. 添加备注信息 如果 Excel 的第一行是备注信息(如工号为6位文本格式等),可以在写入 Excel 时手动插入备注行。备注行可以通过自定义样式进行设置,如背景颜色。

  4. 设置单元格合并和背景颜色 如果需要合并单元格或者设置背景颜色,你可以使用 WriteStyleCellStyle 来设置样式。示例如下:

复制代码

java

复制代码
import com.alibaba.excel.write.style.AbstractCellStyleStrategy;
import org.apache.poi.ss.usermodel.*;

import java.util.List;

public class CustomCellStyleStrategy extends AbstractCellStyleStrategy {

    @Override
    protected void initCellStyle(Workbook workbook) {
        super.initCellStyle(workbook);
        // 设置备注行的背景颜色
        Sheet sheet = workbook.getSheetAt(0);
        Row row = sheet.createRow(0);
        row.createCell(0).setCellValue("工号为6位文本格式");
        row.createCell(1).setCellValue("变更前信息(不用填写,系统自动填充)");

        // 合并单元格
        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, 1));

        // 设置背景颜色
        CellStyle cellStyle = workbook.createCellStyle();
        cellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex());
        cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
        row.getCell(0).setCellStyle(cellStyle);
        row.getCell(1).setCellStyle(cellStyle);
    }

    @Override
    protected void setColumnWidth(Sheet sheet) {
        super.setColumnWidth(sheet);
        sheet.setColumnWidth(0, 6000); // 设置列宽
    }
}

EasyExcel.write() 方法中加入该自定义样式:

复制代码
EasyExcel.write(fileName, EmployeeExcel.class)
          .sheet("员工信息")
          .registerWriteHandler(new CustomCellStyleStrategy())
          .doWrite(data);

总结

  • @ExcelProperty 注解用于将 Java 类的字段映射到 Excel 的列。
  • 通过 EasyExcel,可以轻松实现 Excel 文件的导出,支持数据模型与表格列的直接绑定。
  • 在导出时,可以添加备注行、合并单元格、设置背景颜色等自定义样式。
相关推荐
松韬18 分钟前
Spring + Redisson:从 0 到 1 搭建高可用分布式缓存系统
java·redis·分布式·spring·缓存
绝顶少年30 分钟前
Spring Boot 注解:深度解析与应用场景
java·spring boot·后端
心灵宝贝30 分钟前
Tomcat 部署 Jenkins.war 详细教程(含常见问题解决)
java·tomcat·jenkins
天上掉下来个程小白32 分钟前
Redis-14.在Java中操作Redis-Spring Data Redis使用方式-操作列表类型的数据
java·redis·spring·springboot·苍穹外卖
ゞ 正在缓冲99%…40 分钟前
leetcode22.括号生成
java·算法·leetcode·回溯
写代码的小王吧44 分钟前
【Java可执行命令】(十)JAR文件签名工具 jarsigner:通过数字签名及验证保证代码信任与安全,深入解析 Java的 jarsigner命令~
java·开发语言·网络·安全·web安全·网络安全·jar
伊成1 小时前
Springboot整合Mybatis+Maven+Thymeleaf学生成绩管理系统
java·maven·mybatis·springboot·学生成绩管理系统
一人の梅雨1 小时前
化工网平台API接口开发实战:从接入到数据解析‌
java·开发语言·数据库
扫地的小何尚1 小时前
NVIDIA工业设施数字孪生中的机器人模拟
android·java·c++·链表·语言模型·机器人·gpu
Niuguangshuo1 小时前
Python设计模式:克隆模式
java·开发语言·python