EasyPOI实现excel文件导出

EasyPOI真的是一款非常好用的文件导出工具,相较于传统的一行一列的数据导出,这种以实体类绑定生成的方式真的非常方便,也希望大家能够了解、掌握其使用方法,下面就用一个实例来简单介绍一下EasyPOI的使用。

1.导入依赖

XML 复制代码
        <!-- easypoi导出 -->
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-base</artifactId>
            <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-web</artifactId>
            <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-annotation</artifactId>
            <version>4.2.0</version>
        </dependency>

2.创建对应实体类

java 复制代码
package com.wulian.training.center.export;

import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;

@Data
public class TestScoreExportDTO {
    /**
     * 序号
     */
    @Excel(name = "序号", orderNum = "1", width = 15)
    private Integer id;
    /**
     * 人员名称
     */
    @Excel(name = "人员名称", orderNum = "2", width = 15)
    private String personName;
    /**
     * 达标天数
     */
    @Excel(name = "达标天数", orderNum = "3", width = 15)
    private Integer passCount;
    /**
     * 积分总数
     */
    @Excel(name = "积分总数", orderNum = "4", width = 15)
    private String totalScore;
    /**
     * 日平均积分
     */
    @Excel(name = "日平均积分", orderNum = "5", width = 15)
    private String avgScore;
    /**
     * 积分排名
     */
    @Excel(name = "积分排名", orderNum = "6", width = 15)
    private Integer number;

}

3.导出方法

java 复制代码
    @PostMapping("/export")
    @ApiOperation(value = "导出")
    public ResultMoudel export(@RequestParam(required = false)String name,HttpServletRequest request) throws IOException {

        Map map=new HashMap();
        map.put("name",name);
        map.put("companyId",sysUser.getCompanyId());
        List<TestScoreExportDTO> list=appTestManageMapper.selectOrderByTypePage(map);
        AtomicInteger id = new AtomicInteger(new Integer(1));
        list.stream().forEach(iter->{
                    iter.setId(id.getAndIncrement());
                });
        String fileName = "积分信息";
        //设置导出参数
        ExportParams exportParams = new ExportParams("积分信息", "排名", ExcelType.XSSF);
        //设置表头
        exportParams.setCreateHeadRows(true);
//        exportParams.setAddIndex(true);
        //数据渲染
        Workbook sheets = ExcelExportUtil.exportExcel(exportParams, TestScoreExportDTO.class, list);
        //导出
        final String downloadName = new String((fileName + ExcelTypeEnum.XLSX.getValue()).getBytes(), StandardCharsets.ISO_8859_1);
//        response.setCharacterEncoding("UTF-8");
        response.setHeader("content-Type", "application/vnd.ms-excel");
        response.setHeader("Content-Disposition", "attachment;filename=" + downloadName);
        //获取输出流,将excel输出
        ServletOutputStream outputStream = response.getOutputStream();
        sheets.write(outputStream);
        return new ResultMoudel<>().success("导出成功");

    }

导出成功:

相关推荐
nlog3n16 分钟前
Java 桥接模式 详解
java·开发语言·桥接模式
理想奋斗中21 分钟前
【并发编程 | 第五篇】探索ThreadLocal的原理
java·多线程·threadlocal·threadlocalmap
李小白6624 分钟前
JavaEE初阶复习(JVM篇)
java·jvm·java-ee
Easonmax34 分钟前
【JavaEE】网络原理详解
java·java-ee
java_学习爱好者1 小时前
SpringBoot配置文件多环境开发
java
别来无恙✲1 小时前
SpringBoot启动方法分析
java·springboot·场景设计
Jay_See1 小时前
Leetcode——239. 滑动窗口最大值
java·数据结构·算法·leetcode
DKPT1 小时前
Eclipse,MyEclipse,IDEA,Vscode这些编译器和JDK的相爱相杀
java·eclipse·编辑器·intellij-idea·myeclipse
肠胃炎1 小时前
真题246—矩阵计数
java·线性代数·算法·矩阵·深度优先
前行的小黑炭2 小时前
设计模式:为什么使用模板设计模式(不相同的步骤进行抽取,使用不同的子类实现)减少重复代码,让代码更好维护。
android·java·kotlin