String[] names = {"a", "b", "c"}; // 每列行不一樣值
int zbcount = 0; // 每列相同行值的個數
int startCount = 0; // 開始行
int col = 1; // 默認列數據庫
for (int i = 0; i < names.length; i++) {
String name = names[i];
int defaultCount = 2; //默認行
zbcount = [根據 name 或 其它字段查詢在數據庫中的個數];
if (i == 0) {
startCount = defaultCount+zbcount;
sheet.mergeCells(col-1, defaultCount, col-1, startCount-1);//合併單元格,第一個參數:要合併 的單元格最左上角的列號,第二個參數:要合併的單元格最左上角的行號,第三個參數:要合併的 單元格最右角的列號,第四個參數:要合併的單元格最右下角的行號
} else {
sheet.mergeCells(col-1, (startCount+1)-1, col-1, (startCount+zbcount)-1);
startCount =startCount+zbcount;
}
}數據