Export to excel while it contains huge data

后端 未结 1 1557
旧巷少年郎
旧巷少年郎 2020-12-21 06:50

While I am exporting excel which has huge data(ex:100 rows) I am getting below alert while opening sheet. And if we click on proceed,it is opening in protected view.

相关标签:
1条回答
  • 2020-12-21 07:38
      //u can call this style method before loops where we are creating cells
       HSSFCellStyle yellowStyle = getYellowColoreBasedOnNewField(workBook);     
    
      private HSSFCellStyle getYellowColoreBasedOnNewField(HSSFWorkbook workBook) {
        HSSFCellStyle style = workBook.createCellStyle();
        HSSFFont font = createAndSetFontStyle(workBook);
        setYellowColor(style, font);
        return style;
    } 
    
        private HSSFFont createAndSetFontStyle(HSSFWorkbook wb) {
        HSSFFont font = wb.createFont();
        font.setFontName(XSSFFont.DEFAULT_FONT_NAME);
        font.setFontHeightInPoints((short)10);
        return font;
    }
    
    0 讨论(0)
提交回复
热议问题