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

poi 新增一行并拷贝上一行的样式

时间:2021-03-02 12:40:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:param   turn   int   单元   div   col   单元格   getheight   poi   

    /**
     * 新增一行数据并拷贝上一行的样式
     *
     * @param sheet
     * @param startRow 开始新增行数
     * @param cellNum 增加的列数
     * @return
     */
    private void insertRow(HSSFSheet sheet, int startRow, int cellNum) {
        sheet.shiftRows(startRow, sheet.getLastRowNum(), 1, true, false);
        //获取当前行
        HSSFRow rowSource = sheet.getRow(startRow - 1);
        //获取当前行样式
        HSSFCellStyle rowStyle = rowSource.getRowStyle();
        //新增行
        HSSFRow rowInsert = sheet.createRow(startRow);
        if (rowStyle != null) {
            rowInsert.setRowStyle(rowStyle);
            rowInsert.setHeight(rowSource.getHeight());
        }
        for (int col = 0; col < cellNum; col++) {
            HSSFCell cellSource = rowSource.getCell(col);
            HSSFCell cellInsert = rowInsert.createCell(col);
            HSSFCellStyle cellStyle = cellSource.getCellStyle();
            //设置单元格样式    
            if (cellStyle != null) {
                cellInsert.setCellStyle(cellStyle);
            }
        }
    }

 

poi 新增一行并拷贝上一行的样式

标签:param   turn   int   单元   div   col   单元格   getheight   poi   

原文地址:https://www.cnblogs.com/xufeng-moxuan/p/14467582.html

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