java excel大數(shù)量導(dǎo)出(基于阿里easyexcel)

easyexcel官網(wǎng)
https://www.yuque.com/easyexcel/doc/easyexcel

測試用poi版本 3.15 3.17存在 如果用戶不想等待中斷會導(dǎo)致內(nèi)存泄漏 4.1.0沒有該問題-

        <!--引用相關(guān)依賴-->
        <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>

第一個(gè)思路:分頁導(dǎo)出 查詢數(shù)據(jù)庫一批寫入一批

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

    private static AtomicInteger exportNumber = new AtomicInteger();
    @RequestMapping(name = "數(shù)據(jù)導(dǎo)出接口", 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''" + "查驗(yàn)列表數(shù)據(jù)導(dǎo)出" + ".xlsx");
        //限制導(dǎo)出的次數(shù)  分布式的話 可以選用中間件去操作
        if(exportNumber.incrementAndGet() > 5){
            errorHandle(response,"超出同時(shí)導(dǎo)出的數(shù)量 請稍后導(dǎo)出");
            return;
        }
        ExcelWriter excelWriter = null;
        try {
            excelWriter = EasyExcel.write(response.getOutputStream(), TestDto.class).build();
            int i = 0;
            while (true){
                // 分頁去數(shù)據(jù)庫查詢數(shù)據(jù) 這里可以去數(shù)據(jù)庫查詢每一頁的數(shù)據(jù) 這里你根據(jù)自身的分頁去實(shí)現(xiàn)就行
                List<TestDto> data =  getPageList(bean);
                if(data == null){
                    return;
                }
                //這方法封裝數(shù)據(jù)用 這個(gè)可以根據(jù)你自身業(yè)務(wù)處理
                WriteSheet writeSheet = EasyExcel.writerSheet(i,"列表數(shù)據(jù)導(dǎo)出"+i).build();
                excelWriter.write(data,writeSheet);
                i++;
                data.clear();
            }
        }catch (Exception e){
            log.error("查驗(yàn)列表數(shù)據(jù)導(dǎo)出異常 ",e);
            errorHandle(response,"導(dǎo)出異常"+e.getMessage());
        }finally {
            exportNumber.decrementAndGet();
            if (excelWriter != null) {
                excelWriter.finish();
            }
        }
    }

    /**  分頁去數(shù)據(jù)庫查詢數(shù)據(jù) 這里可以去數(shù)據(jù)庫查詢每一頁的數(shù)據(jù) 這里你根據(jù)自身的分頁去實(shí)現(xiàn)就行*/
    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("查驗(yàn)列表數(shù)據(jù)導(dǎo)出").doWrite(Arrays.asList(testDto));
        } catch (IOException e) {
            log.error("errorHandle 異常{}",e.getMessage());
        }
    }

    // 頭背景設(shè)置成紅色 IndexedColors.RED.getIndex()  導(dǎo)出的對象
    @HeadStyle(fillPatternType = FillPatternType.SOLID_FOREGROUND, fillForegroundColor = 17)
    // 頭字體設(shè)置成20
    @HeadFontStyle(fontHeightInPoints = 13)
    @ColumnWidth(10)
    @HeadRowHeight(30)
    // 內(nèi)容字體設(shè)置成20
    @ContentFontStyle(fontHeightInPoints = 13)
    @ExcelIgnoreUnannotated()
    @Data
    public class TestDto implements Serializable {
        @ExcelProperty(value = "查驗(yàn)編號",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;

        /** 查驗(yàn)結(jié)果  1合格  2 不合格*/
        @ExcelProperty(value = "測試結(jié)果",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 = "測試時(shí)間13",index = 13)
        private Date checktime;
        @ExcelProperty(value = "測試狀態(tài)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;
    }

    //轉(zhuǎn)換器
    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){// 結(jié)果
                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;
}

第二種思路:基于數(shù)據(jù)庫的Cursor方式 服務(wù)端和數(shù)據(jù)庫建立長連接 邊讀邊寫 用mybatis實(shí)現(xiàn)


 <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.3.2</version>
        </dependency>
 /**
     * 通過游標(biāo)的方式獲取
     * @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"));

            //查詢數(shù)據(jù) 獲取到游標(biāo)    自己用個(gè)
            DefaultCursor<QueryCondition> allStream = (DefaultCursor<QueryCondition>) getAllStream(roBean);
            Iterator<QueryCondition> iterator = allStream.iterator();
            while (iterator.hasNext()){
                QueryCondition next = iterator.next();
                //滿足多少條的時(shí)候就寫一波
                if (beans.size()<10000&&!allStream.isConsumed()){
                    beans.add(next);
                    iterator.remove();
                }else {
                    //滿足條件開始執(zhí)行寫  偽代碼(自己實(shí)現(xiàn)寫)
                    WriteSheet writeSheet = EasyExcel.writerSheet("列表數(shù)據(jù)導(dǎo)出").build();
                    writeSheet.setExcludeColumnFiledNames(excludeColumnFiledNames);
                    excelWriter.write(beans,writeSheet);
                    beans.clear();
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }finally {
            if (excelWriter != null) {
                excelWriter.finish();
            }
        }
    }

    /**
     * 數(shù)據(jù)庫獲取
     * @param bean
     * @return
     */
    Cursor<QueryCondition> getAllStream(QueryCondition bean){
        //basemap.getAllStream(bean)
        return null;
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末头遭,一起剝皮案震驚了整個(gè)濱河市监透,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)踩寇,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來六水,“玉大人俺孙,你說我怎么就攤上這事≈兰郑” “怎么了睛榄?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長想帅。 經(jīng)常有香客問我场靴,道長,這世上最難降的妖魔是什么港准? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任旨剥,我火速辦了婚禮,結(jié)果婚禮上浅缸,老公的妹妹穿的比我還像新娘轨帜。我一直安慰自己,他們只是感情好衩椒,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布蚌父。 她就那樣靜靜地躺著哮兰,像睡著了一般。 火紅的嫁衣襯著肌膚如雪苟弛。 梳的紋絲不亂的頭發(fā)上喝滞,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天,我揣著相機(jī)與錄音膏秫,去河邊找鬼右遭。 笑死,一個(gè)胖子當(dāng)著我的面吹牛缤削,可吹牛的內(nèi)容都是我干的狸演。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼僻他,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了腊尚?” 一聲冷哼從身側(cè)響起吨拗,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎婿斥,沒想到半個(gè)月后劝篷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡民宿,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年娇妓,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片活鹰。...
    茶點(diǎn)故事閱讀 38,650評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡哈恰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出志群,到底是詐尸還是另有隱情着绷,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布锌云,位于F島的核電站荠医,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏桑涎。R本人自食惡果不足惜彬向,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望攻冷。 院中可真熱鬧娃胆,春花似錦、人聲如沸讲衫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至招驴,卻和暖如春篙程,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背别厘。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工虱饿, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人触趴。 一個(gè)月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓氮发,卻偏偏與公主長得像,于是被迫代替她去往敵國和親冗懦。 傳聞我的和親對象是個(gè)殘疾皇子爽冕,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內(nèi)容