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即可导出成功

相关推荐
前端张三1 分钟前
Mac 电脑pink 后端ip地址进行本地联调
服务器·tcp/ip·macos
余生H1 分钟前
前端的全栈混合之路Meteor篇:关于前后端分离及与各框架的对比
前端·javascript·node.js·全栈
程序员-珍4 分钟前
使用openapi生成前端请求文件报错 ‘Token “Integer“ does not exist.‘
java·前端·spring boot·后端·restful·个人开发
axihaihai9 分钟前
网站开发的发展(后端路由/前后端分离/前端路由)
前端
第六五9 分钟前
ubuntu命令行连接wifi
服务器·ubuntu
CXDNW12 分钟前
【网络篇】计算机网络——应用层详述(笔记)
服务器·笔记·计算机网络·http·web·cdn·dns
流烟默21 分钟前
Vue中watch监听属性的一些应用总结
前端·javascript·vue.js·watch
zeruns80225 分钟前
如何搭建自己的域名邮箱服务器?Poste.io邮箱服务器搭建教程,Linux+Docker搭建邮件服务器的教程
linux·运维·服务器·docker·网站
2401_8572979131 分钟前
招联金融2025校招内推
java·前端·算法·金融·求职招聘
北城青32 分钟前
WebRTC Connection Negotiate解决
运维·服务器·webrtc