java excel大数量导出(基于阿里easyexcel)

easyexcel官网
https://www.yuque.com/easyexcel/doc/easyexcel

测试用poi版本 3.15 3.17存在 如果用户不想等待中断会导致内存泄漏 4.1.0没有该问题-

        <!--引用相关依赖-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>easyexcel</artifactId>
            <version>2.2.6</version>
        </dependency>
      
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>4.1.0</version>
        </dependency>
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.5.1</version>
            <scope>compile</scope>
        </dependency>

第一个思路:分页导出 查询数据库一批写入一批

@RestController
@RequestMapping("api")
@Slf4j
public class TestController {

    private static AtomicInteger exportNumber = new AtomicInteger();
    @RequestMapping(name = "数据导出接口", value = "exportList.json", method = RequestMethod.POST)
    public void getInsList(@RequestBody QueryCondition bean, HttpServletResponse response) {
        response.setContentType("application/vnd.ms-excel");
        response.setCharacterEncoding("utf-8");
        response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + "查验列表数据导出" + ".xlsx");
        //限制导出的次数  分布式的话 可以选用中间件去操作
        if(exportNumber.incrementAndGet() > 5){
            errorHandle(response,"超出同时导出的数量 请稍后导出");
            return;
        }
        ExcelWriter excelWriter = null;
        try {
            excelWriter = EasyExcel.write(response.getOutputStream(), TestDto.class).build();
            int i = 0;
            while (true){
                // 分页去数据库查询数据 这里可以去数据库查询每一页的数据 这里你根据自身的分页去实现就行
                List<TestDto> data =  getPageList(bean);
                if(data == null){
                    return;
                }
                //这方法封装数据用 这个可以根据你自身业务处理
                WriteSheet writeSheet = EasyExcel.writerSheet(i,"列表数据导出"+i).build();
                excelWriter.write(data,writeSheet);
                i++;
                data.clear();
            }
        }catch (Exception e){
            log.error("查验列表数据导出异常 ",e);
            errorHandle(response,"导出异常"+e.getMessage());
        }finally {
            exportNumber.decrementAndGet();
            if (excelWriter != null) {
                excelWriter.finish();
            }
        }
    }

    /**  分页去数据库查询数据 这里可以去数据库查询每一页的数据 这里你根据自身的分页去实现就行*/
    private List<TestDto> getPageList(QueryCondition bean) {
        return new ArrayList<>();
    }

    /** 错误处理 */
    public void errorHandle(HttpServletResponse response,String errMsg)  {
        TestDto testDto = new TestDto();
        testDto.setInsid(errMsg);
        try {
            EasyExcel.write(response.getOutputStream(), TestDto.class).sheet("查验列表数据导出").doWrite(Arrays.asList(testDto));
        } catch (IOException e) {
            log.error("errorHandle 异常{}",e.getMessage());
        }
    }

    // 头背景设置成红色 IndexedColors.RED.getIndex()  导出的对象
    @HeadStyle(fillPatternType = FillPatternType.SOLID_FOREGROUND, fillForegroundColor = 17)
    // 头字体设置成20
    @HeadFontStyle(fontHeightInPoints = 13)
    @ColumnWidth(10)
    @HeadRowHeight(30)
    // 内容字体设置成20
    @ContentFontStyle(fontHeightInPoints = 13)
    @ExcelIgnoreUnannotated()
    @Data
    public class TestDto implements Serializable {
        @ExcelProperty(value = "查验编号",index = 0)
        @ColumnWidth(28)
        private String insid;

        @ExcelProperty(value = "测试1",index = 1)
        private String licenseplate;

        @ExcelProperty(value = "测试2",index = 2)
        private String licensecolorName;
        private String licensecolor;

        @ExcelProperty(value = "测试3",index = 3)
        private String vehicletypeName;
        private Integer vehicletype;

        @ExcelProperty(value = "编号",index = 4)
        private String id;

        @ExcelProperty(value = "类型",index = 5)
        private String freighttypesName;
        private String freighttypes;

        /** 查验结果  1合格  2 不合格*/
        @ExcelProperty(value = "测试结果",index = 6,converter = CheckConverter.class)
        private Integer checkresult;

        @ExcelProperty(value = "测试省份",index = 7)
        private String enprovincialName;

        @ExcelProperty(value = "出口测试",index = 8)
        @ColumnWidth(20)
        private String exmanagername;

        @ExcelProperty(value = "出口测试9",index = 9)
        @ColumnWidth(20)
        private String exroadname;
        @ExcelProperty(value = "出口测试10",index = 10)
        @ColumnWidth(20)
        private String exstationname;

        @ExcelProperty(value = "测试人员11",index = 11)
        private String firstName;
        @ExcelProperty(value = "测试人员12",index = 12)
        private String secName;
        @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
        @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",locale = "zh",timezone="GMT+8")
        @ColumnWidth(20)
        @ExcelProperty(value = "测试时间13",index = 13)
        private Date checktime;
        @ExcelProperty(value = "测试状态14",index = 14)
        private Integer inspectionphase;

        @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
        @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",locale = "zh",timezone="GMT+8")
        private Date transportdate;
    }

    //转换器
    public class CheckConverter implements Converter<Integer> {
        @Override
        public Class supportJavaTypeKey() {
            return Integer.class;
        }

        @Override
        public CellDataTypeEnum supportExcelTypeKey() {
            return CellDataTypeEnum.NUMBER;
        }

        @Override
        public Integer convertToJavaData(CellData cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {
            return null;
        }

        @Override
        public CellData convertToExcelData(Integer value, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) throws Exception {
            if(value == 1){// 结果
                return new CellData<>("合格");
            }else if(value == 2){
                return new CellData<>("不合格");
            }else if(value == 3){
                return new CellData<>("处理中");
            }
            return new CellData<>(value);
        }
    }

}
@Data
class QueryCondition {
    String id;
    String name;
}

第二种思路:基于数据库的Cursor方式 服务端和数据库建立长连接 边读边写 用mybatis实现


 <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.3.2</version>
        </dependency>
 /**
     * 通过游标的方式获取
     * @param roBean
     * @param fileName
     * @param excludeColumnFiledNames
     * @param response
     */
    public void exportStreamDataZip(QueryCondition roBean, String fileName, Set<String> excludeColumnFiledNames, HttpServletResponse response){
        List<QueryCondition> beans = new ArrayList<>(1000);
        ExcelWriter excelWriter = null;
        try {
            excelWriter = EasyExcel.write(response.getOutputStream(), QueryCondition.class).build();
            response.setContentType("application/vnd.ms-excel");
            response.setCharacterEncoding("utf-8");
            response.setHeader("Content-disposition", "attachment;filename*=UTF-8''" + URLEncoder.encode(fileName+".xlsx", "UTF-8"));

            //查询数据 获取到游标    自己用个
            DefaultCursor<QueryCondition> allStream = (DefaultCursor<QueryCondition>) getAllStream(roBean);
            Iterator<QueryCondition> iterator = allStream.iterator();
            while (iterator.hasNext()){
                QueryCondition next = iterator.next();
                //满足多少条的时候就写一波
                if (beans.size()<10000&&!allStream.isConsumed()){
                    beans.add(next);
                    iterator.remove();
                }else {
                    //满足条件开始执行写  伪代码(自己实现写)
                    WriteSheet writeSheet = EasyExcel.writerSheet("列表数据导出").build();
                    writeSheet.setExcludeColumnFiledNames(excludeColumnFiledNames);
                    excelWriter.write(beans,writeSheet);
                    beans.clear();
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            if (excelWriter != null) {
                excelWriter.finish();
            }
        }
    }

    /**
     * 数据库获取
     * @param bean
     * @return
     */
    Cursor<QueryCondition> getAllStream(QueryCondition bean){
        //basemap.getAllStream(bean)
        return null;
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 200,783评论 5 472
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,396评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 147,834评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,036评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,035评论 5 362
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,242评论 1 278
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,727评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,376评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,508评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,415评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,463评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,140评论 3 316
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,734评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,809评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,028评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,521评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,119评论 2 341

推荐阅读更多精彩内容