码迷,mamicode.com
首页 > 其他好文 > 详细

excel导出效率慢,单元格样式复制方法分析

时间:2016-11-24 00:27:08      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:java

实现方法:

@SuppressWarnings("unchecked")

    public Row copyStyle(Sheet sheet, int srcRowNum, int destRowNum) {

    Row srcRow = sheet.getRow(srcRowNum);

    Row destRow = sheet.createRow(destRowNum);

    try{

       if(srcRow.getRowStyle()!=null){//row格式的复制

        destRow.setRowStyle(srcRow.getRowStyle());

       }

       int i=0;

       Iterator<Cell> srcCells = srcRow.cellIterator();

       while(srcCells.hasNext()) {

        Cell srcCell = srcCells.next();

        Cell destCell = destRow.createCell(i++);

        //cell格式的复制

           if(srcCell.getCellStyle()!=null)destCell.setCellStyle(srcCell.getCellStyle());


       }

    }catch(Exception e){

    LOG.error("copyStyle::"+e.getMessage());

    LOG.error(e);

    }

        return destRow;

}



调用方法:


Row row =null;

if(i==0){

row = sheet.createRow(i+6);

for (int j = 0; j < TITLES.length; j++) {

// 数据项单元格格式

Cell cell = row.createCell(j);

cell.setCellStyle(createCellStyleWithBorder(wookBook,CELL_STYPE_STRING, b));

}

}else{

row=copyStyle(sheet,i+5,i+6);

}



excel导出效率慢,单元格样式复制方法分析

标签:java

原文地址:http://tianjian.blog.51cto.com/3549910/1875844

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!