黑豹程序员-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;
    }
相关推荐
xlsw_38 分钟前
java全栈day20--Web后端实战(Mybatis基础2)
java·开发语言·mybatis
神仙别闹1 小时前
基于java的改良版超级玛丽小游戏
java
黄油饼卷咖喱鸡就味增汤拌孜然羊肉炒饭2 小时前
SpringBoot如何实现缓存预热?
java·spring boot·spring·缓存·程序员
暮湫2 小时前
泛型(2)
java
超爱吃士力架2 小时前
邀请逻辑
java·linux·后端
南宫生2 小时前
力扣-图论-17【算法学习day.67】
java·学习·算法·leetcode·图论
转码的小石2 小时前
12/21java基础
java
李小白663 小时前
Spring MVC(上)
java·spring·mvc
GoodStudyAndDayDayUp3 小时前
IDEA能够从mapper跳转到xml的插件
xml·java·intellij-idea
装不满的克莱因瓶3 小时前
【Redis经典面试题六】Redis的持久化机制是怎样的?
java·数据库·redis·持久化·aof·rdb