sheet.groupRow(1,5);//行分組
sheet.groupColumn(0,0);//列分組
sheet.getRow(8).setZeroHeight(true);//隱藏行
sheet.createFreezePane(3, 9);//凍結*/
sheet.setForceFormulaRecalculation(true);//設置公式自動計算
sheet.autoSizeColumn(0, true);//設置單元格自適應
sheet.setDisplayGridlines(false);//網格//去掉邊框
workbook.setPrintArea(
0, //工做薄 下標0開始
2, //起始列 下標0開始
15, //終止列 下標0開始
7, //起始行 下標0開始
i+7//終止行 下標0開始
);//設置打印區域
//poi寫公式
XSSFCell cell = null;
cell.setCellFormula("G6+J6");cell.setCellType(cell.CELL_TYPE_FORMULA);