黑豹程序员-EasyExcel实现导出

需求

将业务数据导出到excel中,老牌的可以选择POI,也有个新的选择EasyExcel。

有个小坑,客户要求样式比较美观,数字列要求千位符,保留2位小数。

可以用代码实现但非常繁琐,用模板就特别方便,模板定义好格式,填充数据即可。

于是开干!

模板

在项目的src\main\resources\templates,静态模板资源目录下,如果templates不存在,创建即可

settle.xlsx

注意下面的模板格式,填充列表,下面{.name}代表entity对应的字段

修改Entity实体,加控制注解

注意两个注解:

@ExcelIgnore 标识这个字段不会处理

@ExcelProperty("结算金额") 要处理的字段,已经如果写入时,列头的名称

bash 复制代码
package com.rlcloud.system.entity;

import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.Date;

/**
 * @version v1.0 创建时间:2023/11/27 16:36
 * @author: 作者:陈子枢
 * @web CSDN:https://blog.csdn.net/nutony
 * @description 描述:
 */

@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("tb_settle")           //映射数据库表
public class Settle {
    //序列化时,不采用long类型,而采用string类型,防止雪花精度丢失问题
    @JsonSerialize(using= ToStringSerializer.class)
    @TableId(type = IdType.ASSIGN_ID)   //主键生成策略,雪花
    @ExcelIgnore
    private Long id;

    @NotNull(message = "结算批次不能为空")
    @ExcelProperty("结算批次")
    private String batch;

    @NotNull(message = "结算日期不能为空")
    @ExcelProperty("结算日期")
    private String dtTimeArr;

    @NotNull(message = "业务量不能为空")
    @ExcelProperty("业务量")
    private BigDecimal volumeAmt;

    @NotNull(message = "结算金额不能为空")
    @ExcelProperty("结算金额")
    private BigDecimal settleAmt;

    @ExcelIgnore
    private String createBy;
    @ExcelIgnore
    private Date createTime;
}

Controller代码

bash 复制代码
    @GetMapping("/ljt/settle/export")
    public void export(HttpServletResponse response) throws IOException {
        QueryWrapper qw = new QueryWrapper();
        qw.orderByDesc("create_time");
        //查询数据
        List<Settle> dataList = settleService.list(qw);

        //此处getResourceAsStream 用于获取服务器打包后的Excel模板文件流;
        //如果采用getPath方法获取文件地址本地ieda环境可以获取到,上传到服务器后会失效。采用流可以都生效,具体原因暂未仔细查看。有兴趣的童鞋可以自己去尝试!
        InputStream resourceAsStream = ResourceUtil.getStream("classpath:templates/settle.xlsx");
        //读取Excel 根据指定模板导出
        ExcelWriter excelWriter = EasyExcel.write(getOutputStream("结算数据.xlsx",response)).withTemplate(resourceAsStream).excelType(ExcelTypeEnum.XLSX).build();
        WriteSheet writeSheet = EasyExcel.writerSheet().build();
        FillConfig fillConfig = FillConfig.builder().forceNewRow(true).build();     //关键,多组数据填充需要另起一行,默认为false

        //直接写入Excel数据(list是我查询并需导出的数据,并且里面的字段和excel需要导出的字段对应)
        excelWriter.fill(dataList, fillConfig, writeSheet);     //注意模板中需要写变量{.name}
        excelWriter.finish();
    }

    public static OutputStream getOutputStream(String fileName, HttpServletResponse response)  {
        try {
            fileName = URLEncoder.encode(fileName, "UTF-8");
            response.setContentType("application/vnd.ms-excel");
            response.setCharacterEncoding("utf8");
            response.setHeader("Content-Disposition", "attachment; filename=" + fileName + ".xls");
            response.setHeader("Pragma", "public");
            response.setHeader("Cache-Control", "no-store");
            response.addHeader("Cache-Control", "max-age=0");
            return response.getOutputStream();
        } catch (IOException e) {
            log.error("导出excel表格失败", e);
        }
        return null;
    }
相关推荐
Daniel 大东31 分钟前
BugJson因为json格式问题OOM怎么办
java·安全
Theodore_10225 小时前
4 设计模式原则之接口隔离原则
java·开发语言·设计模式·java-ee·接口隔离原则·javaee
冰帝海岸6 小时前
01-spring security认证笔记
java·笔记·spring
世间万物皆对象6 小时前
Spring Boot核心概念:日志管理
java·spring boot·单元测试
没书读了7 小时前
ssm框架-spring-spring声明式事务
java·数据库·spring
小二·7 小时前
java基础面试题笔记(基础篇)
java·笔记·python
开心工作室_kaic7 小时前
ssm161基于web的资源共享平台的共享与开发+jsp(论文+源码)_kaic
java·开发语言·前端
懒洋洋大魔王7 小时前
RocketMQ的使⽤
java·rocketmq·java-rocketmq
武子康7 小时前
Java-06 深入浅出 MyBatis - 一对一模型 SqlMapConfig 与 Mapper 详细讲解测试
java·开发语言·数据仓库·sql·mybatis·springboot·springcloud
转世成为计算机大神8 小时前
易考八股文之Java中的设计模式?
java·开发语言·设计模式