当相同的索引用于列和行标签时,Apache POI Pivot table 错误

Apache POI Pivot table error when same index is used for both column and row label

我正在尝试创建一个枢轴 table 来进行同期群分析

pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1);
pivotTable.addRowLabel(1);

打开文件时出现错误,文件已损坏您是否仍要打开文件,当我说是并打开它时,结果看起来不错,唯一的问题是错误。

我做了一个解决方法,让一个重复的列数据具有不同的名称

例如: 假设第 1 列是电子邮件,添加了名称为 dup email 的重复第 36 列,如下所示,效果很好

pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1);
pivotTable.addRowLabel(35);

为什么当我将列和行标签都设置为 1 时它一开始就失败了。

非常感谢任何帮助

如果您使用 apache poi 设置 pivotTable.addRowLabel(1),则 apache poi 仅将数据透视字段 1 设置为 axisRow,但如果您还想 pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1),它也需要是 dataField。所以我们需要纠正这个问题。

示例:

import org.apache.poi.xssf.usermodel.*;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.*;

import java.io.*;

class PivotTableTest5 {

 private static void setCellData(Sheet sheet) {
  Row row = sheet.createRow(0);
  Cell cell = row.createCell(0);
  cell.setCellValue("Name");
  cell = row.createCell(1);
  cell.setCellValue("City");

  for (int r = 1; r < 15; r++) {
   row = sheet.createRow(r);
   cell = row.createCell(0);
   cell.setCellValue("Name " + ((r-1) % 4 + 1));
   cell = row.createCell(1);
   cell.setCellValue("City " + (int)((new java.util.Random().nextDouble() * 3)+1) );  
  }
 }

 public static void main(String[] args) {
  try {
   XSSFWorkbook wb = new XSSFWorkbook();
   XSSFSheet sheet = wb.createSheet();

   //Create some data to build the pivot table on
   setCellData(sheet);

   XSSFPivotTable pivotTable = sheet.createPivotTable(
    new AreaReference(new CellReference("A1"), new CellReference("B15")), new CellReference("H5"));
   //Count the second column. This needs to be second column a data field.
   pivotTable.addColumnLabel(DataConsolidateFunction.COUNT, 1);
   //Use second column as row label
   pivotTable.addRowLabel(1);
   //Apache poi sets pivot field 1 (second column) only to be axisRow but it needs to be dataField too.
   pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(1).setDataField(true);

   FileOutputStream fileOut = new FileOutputStream("PivotTableTest5.xlsx");
   wb.write(fileOut);
   fileOut.close();
   wb.close();
  } catch (FileNotFoundException e) {
    e.printStackTrace();
  } catch (IOException e) {
    e.printStackTrace();
  }
 }
}