alibaba EasyExcel 简单导出数据到Excel

导入依赖

java 复制代码
<dependency>
     <groupId>com.alibaba</groupId>
     <artifactId>easyexcel</artifactId>
     <version>4.0.1</version>
</dependency>

1、alibaba.excel.EasyExcel导出工具类

java 复制代码
import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.write.style.column.LongestMatchColumnWidthStyleStrategy;

import javax.servlet.http.HttpServletResponse;
import java.net.URLEncoder;
import java.util.List;

public class ExcelUtil {

    /**
     * 导出excel
     *
     * @param response 响应
     * @param list 数据集
     * @param clazz 类名
     * @param fileName 文件名
     * @return
     */
    public static<T> void exportExcel(HttpServletResponse response, List<T> list, Class<T> clazz, String fileName) {
        try {
            response.setCharacterEncoding("utf-8");
            response.setContentType("application/vnd.ms-excel;charset=UTF-8");
            response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode(fileName, "utf-8") + ".xlsx");
            EasyExcel.write(response.getOutputStream(), clazz)
                    .registerWriteHandler(new LongestMatchColumnWidthStyleStrategy())//自适应表格格式
                    .sheet("sheet1")
                    .doWrite(list);
        }catch (Exception e){
            throw new RuntimeException(e.getMessage());
        }
    }
}

2、controller层

java 复制代码
   @GetMapping("/export")
    public void exportExcel(HttpServletResponse response,OpreationLogEntity opreationLogEntity){
        List<OpreationLogEntity> oprLogList = opreationLogService.findOprLogList(opreationLogEntity);
        ExcelUtil.exportExcel(response,oprLogList,OpreationLogEntity.class,"系统日志");
    }

3、实体类字段加上注解:

(1)@ExcelIgnore:表示忽略导出该字段数据

(2)@ExcelProperty("账号"):导出对应的字段数据,并且设置Excel属性表头名,

举例--对应的表头名为:账号

(3)不加注解:例如sysModule字段,会导出该数据,但是表头名为sysModule

java 复制代码
@Data
public class OpreationLogEntity{

    @ExcelIgnore
    private Long id;

    @ExcelProperty("账号")
    private String opreCode;

    private String sysModule;
}

3、测试:浏览器地址栏输入url即可导出成功

相关推荐
福理原乡大王6 分钟前
Linux信号详解
linux·运维·服务器·c++·ubuntu·信号处理
Java知识库16 分钟前
2025秋招后端突围:JVM核心面试题与高频考点深度解析
java·jvm·程序员·java面试·后端开发
南枝异客23 分钟前
四数之和-力扣
java·算法·leetcode
ldq_sd25 分钟前
centos 8.3(阿里云服务器)mariadb由系统自带版本(10.3)升级到10.6
服务器·阿里云·centos
英杰.王28 分钟前
深入 Java 泛型:基础应用与实战技巧
java·windows·python
Leaf吧31 分钟前
java BIO/NIO/AIO
java·开发语言·nio
萌萌哒草头将军1 小时前
🚀🚀🚀VSCode 发布 1.101 版本,Copilot 更全能!
前端·vue.js·react.js
GIS之路1 小时前
OpenLayers 图层叠加控制
前端·信息可视化
IT_10241 小时前
springboot从零入门之接口测试!
java·开发语言·spring boot·后端·spring·lua
90后的晨仔1 小时前
ArkTS 语言中的number和Number区别是什么?
前端·harmonyos