• EasyPoi——导出导入表格数据工具



    文档

    官方文档

    概念

    Easypoi主打的功能就是容易,让一个没见接触过poi的人员就可以方便的写出Excel导出,Excel模板导出,Excel导入,Word模板导出,PDF模板,通过简单的注解和模板语言,完成功能。

    环境搭建(maven)

    
    <dependency>
        <groupId>cn.afterturngroupId>
        <artifactId>easypoi-baseartifactId>
        <version>4.1.0version>
    dependency>
    
    <dependency>
        <groupId>cn.afterturngroupId>
        <artifactId>easypoi-webartifactId>
        <version>4.1.0version>
    dependency>
    
    <dependency>
        <groupId>cn.afterturngroupId>
        <artifactId>easypoi-annotationartifactId>
        <version>4.1.0version>
    dependency>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    工具类

    
    /**
         * 导出Excel
         */
        public static void exportExcel(List<?> list, String title, String sheetName, Class<?> entity, String fileName, HttpServletResponse response) {
            ExportParams exportParams = new ExportParams(title, sheetName);
            //冻结表头
            exportParams.setCreateHeadRows(true);
            Workbook workbook = ExcelExportUtil.exportExcel(exportParams, entity, list);
            if (workbook == null) {
                throw new RuntimeException("Excel表导出失败");
            }
            OutputStream outputStream = null;
            BufferedOutputStream buffOutputStream = null;
            try {
                // 指定下载的文件名--设置响应头
                response.setHeader("Content-Disposition", "attachment;filename=" + new String(fileName.getBytes(), "ISO8859-1") + ".xls");
                //response.setContentType("application/vnd.ms-excel;charset=UTF-8");
                response.setHeader("Pragma", "no-cache");
                response.setHeader("Cache-Control", "no-cache");
                response.setDateHeader("Expires", 0);
                response.setCharacterEncoding("UTF-8");
                // 导出Excel
                outputStream = response.getOutputStream();
                buffOutputStream = new BufferedOutputStream(outputStream);
                workbook.write(buffOutputStream);
                buffOutputStream.flush();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    if (outputStream != null) {
                        outputStream.close();
                    }
                    if (buffOutputStream != null) {
                        buffOutputStream.close();
                    }
                    if (workbook != null) {
                        workbook.close();
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
        /**
         * 导入
         * @param file 需要导入的文件
         * @param titleRows 标题占几行
         * @param headerRows 头部占几行
         * @param pojoClass 转化为对应的实体类
         * @return 返回解析后的实体类对象集合
         */
        public static <T> List<T> importExcel(MultipartFile file, Integer titleRows, Integer headerRows, Class<T> pojoClass){
            if (file == null){
                return null;
            }
            ImportParams params = new ImportParams();
            params.setTitleRows(titleRows);
            params.setHeadRows(headerRows);
            List<T> list = null;
            try {
                list = ExcelImportUtil.importExcel(file.getInputStream(), pojoClass, params);
            }catch (NoSuchElementException e){
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
            return list;
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70

    主要使用注解

    作用于实体类
    @Excel 作用到filed上面,是对Excel一列的一个描述
    @ExcelCollection 表示一个集合,主要针对一对多的导出,比如一个老师对应多个科目,科目就可以用集合表示

    @Excel 主要用的注解

    • name —— 导出时表格内的描述
    • orderNum ——导出时所在的列
    • groupName ——导出时合并单元格的父级描述
    • fixedIndex——导入时强制获取某一列的数据(如果没有,导入数据时获取合并单元格的数据会有问题,我找了半天)
      想看具体的注解就看一下官方文档。

    实战

    实体类(部分)

    在这里插入图片描述

    导出

    Controller层

        @ApiOperation(value = "下载模板")
        @GetMapping("/exportLz")
        public void exportLzExcel(HttpServletResponse response, String fileName, String title){
            List<LzExcelVo> lzExcelVos = new ArrayList<>();//这里可以改为导出数据
            String sheetName= "sheet1";
            String tl = title+"表";
            ExcelUtil.exportExcel(lzExcelVos,tl,sheetName, LzExcelVo.class,fileName,response);
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    导出结果

    在这里插入图片描述

    导入

    service层

        /**
         * Excel表导入数据
         * @param file
         * @param qydm
         * @return
         */
        @Override
        public List<String> importLzExcel(MultipartFile file, String qydm) {
            //解析excel表数据
            List<LzExcelVo> lzExcelVos = ExcelUtil.importExcel(file,1,2,LzExcelVo.class);
            //下面就是数据处理的逻辑了
            return null;
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    controller层

        @ApiOperation(value = "导入")
        @PostMapping("/import")
        public ReturnWrapper<List<String>> importLz(@RequestParam MultipartFile file, String qydm){
            return ReturnWrapMapper.ok(iLzService.importLzExcel(file,qydm));
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
  • 相关阅读:
    【第06节】Selenium4 JavaScript 处理场景实战(Python Web自动化测试)
    零基础Linux_4(权限和初识操作系统)具体用户分类+rwx+umask+粘滞位
    性能测试-基础01
    剖析华为云Astro Platform技术价值与使用体验
    PHP反序列化与SESSION
    Android 开源一个USB读写demo,从多个USB设备中选择一个实现外设控制的通信
    虹科工业树莓派应用案例之在石油开采中的应用
    杂谈-Android和Ios的对比
    高校校园网规划与设计
    SQLAlchemy学习-2.query() 查询数据
  • 原文地址:https://blog.csdn.net/student_hwj/article/details/127969561