如何使用POI在Java中填充数据透视表中的列的字段

时间:2015-11-17 12:11:03

标签: java apache-poi

我使用Java POI类函数在Excel中创建了Pivot表: 下面是代码

XSSFSheet pivot = workbook.getSheetAt(0);

       AreaReference source = new AreaReference(pivot.getSheetName()+"!A$1:P$"+String.valueOf(pivot.getLastRowNum()+1));

       CellReference position = new CellReference("B3");
       XSSFPivotTable pivotTable = Pivot.createPivotTable(source, position, pivot);

       pivotTable.addRowLabel(0);

       //insert column

       pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1, "Column1"); 

Image包含数据透视表的数据字段,使用上面的代码,我可以填充过滤器,值,行。但对于列部分,我无法填充该字段。 addColumnLabel方法在这里不起作用。我需要添加相同的" Type"字段"列"以及"价值"枢轴表的领域。

0 个答案:

没有答案