最近项目中用到poi生成Excel时,用到了单元格合并,于是参考了http://www.anyrt.com/blog/list/poiexcel.html写的文章,但是其中有些地方不是很清楚,于是自己琢磨了一下,实现了功能,并在此记录一下:

        int index = 3 ;
             String lastCell = "";
             String thisCell = "";
             int lastRowIndex = 0;
             while(rs.next()){//每行
                 poiExcel.setCellIntValue(0, index, 0, (index-2));
                 for(int i = 0 ; i<array.length ;i++){//每列
                     colum = array[i];
                     if("F_SJDW".equals(colum) || "F_XMPC".equals(colum) || "F_DW".equals(colum)){//字符类型
                         poiExcel.setCellStringValue(0 , index , i+1 , "null".equals(""+rs.getString(colum))?" ":rs.getString(colum) );
                     }else if("F_YEAR".equals(colum)){//合并单元格
                         thisCell = "null".equals(""+rs.getString(colum))?" ":rs.getString(colum);
 //                        poiExcel.setCellStringValue(0 , index , i+1 , thisCell);
                     }else{//数字类型
                         poiExcel.setCellDoubleValue(0 , index , i+1 , "null".equals(""+rs.getString(colum))? 0 :rs.getDouble(colum) );
                     }
                 }

                  if(!thisCell.equals(lastCell)){//上一次的值和当前的值不相等
                     if(index == 3){//设置初始值
                         lastCell = thisCell;
                         lastRowIndex = index;
                     }else{
                         poiExcel.getSheet(0).addMergedRegion(new CellRangeAddress(lastRowIndex,index-1,(short)2,(short)2));
                         poiExcel.setCellStringValue(0 , lastRowIndex , 2 , lastCell);
                         lastCell = thisCell;//记录最后的值
                         lastRowIndex = index;
                     }
                 }
                 index++;
             }
             if(index>3){
                 poiExcel.getSheet(0).addMergedRegion(new CellRangeAddress(lastRowIndex,index-1,(short)2,(short)2));
                 System.out.println(lastRowIndex);
                 poiExcel.setCellStringValue(0 , lastRowIndex , 2 , lastCell);
             }

说明“:

合并单元格的关键性代码为:

poiExcel.getSheet(0).addMergedRegion(new CellRangeAddress(lastRowIndex,index-1,(short)2,(short)2));

第一个参数lastRowIndex:起始行号,二个参数为终止行号,第三个参数为起始列,第四个参数为终止列,其中行的范围和列的范围皆为闭区间。

向合并单元格中写入值分为两种情况:(1)可以先每行都写入值,然后在进行合并单元格(2)先合并单元格,然后在合并后的第一个单元格中写入值,个人推荐使用第二种。
05-11 22:14