使用具有合并单元格和公式的插入表生成ms excel

时间:2019-03-26 12:09:02

标签: apache-poi

通过使用Apache poi,我可以插入表格,但是我必须应用公式,并合并表格列中的单元格。

Example table

这是生成Excel文件的要求

1 个答案:

答案 0 :(得分:0)

合并单元格:

CellRangeAddress address = new CellRangeAddress(firstRow, lastRow, firstColumn, lastColumn);
      sheet.addMergedRegion(address);

请注意,索引从零开始


添加公式:

String formula= "SUM(A1:A20)";
cell.setCellType(CellType.FORMULA);
cell.setCellFormula(formula);