gpt4 book ai didi

java - 如何从java折叠数据透视表中的所有字段?

转载 作者:行者123 更新时间:2023-12-02 10:52:30 25 4
gpt4 key购买 nike

我正在 JAVA 中使用 apache poi 创建一个数据透视表,它生成一个如下所示的数据透视表,默认情况下所有行都展开
如何生成数据透视表,所有行都会像下面的 java 代码那样折叠。
enter image description here
预先感谢您。
用于生成数据透视表的代码

            AreaReference a=new AreaReference("A1:G5667", null);
CellReference b=new CellReference("A1");
XSSFSheet pivot_sheet=workbook.createSheet("Pivot_table");
XSSFPivotTable pivotTable = pivot_sheet.createPivotTable(a,b,spreadsheet);
pivotTable.addRowLabel(6);
pivotTable.addRowLabel(0);
pivotTable.addRowLabel(2);
pivotTable.addRowLabel(3);
pivotTable.addColumnLabel(DataConsolidateFunction.SUM, 4,"Sum");

最佳答案

您提供的代码无法导致第一个显示的结果,因为它没有设置不同的列标签。它仅添加列 E 作为数据合并列。

但我还是会尝试回答。所以我假设列 G 应是第一行标签。 A 列应为第二行标签,应折叠,C 列应为第三行标签。但 D 列是包含“APR 2018”、“MAY 2018”、“JUN 2018”的列,因此应为列标签。

问题是 apache poi 在创建数据透视表时没有分析内容。因此,它只是为每个数据透视字段添加与数据范围内的行一样多的“默认”数据透视字段项。它只创建一个非常基本的数据透视缓存。只要我们只使用默认值,此方法就有效,因为 Excel 然后会在渲染数据透视表时纠正此问题。但是,如果我们需要默认的其他标签(例如折叠行标签),那么这就失败了。

因此,我们需要 A 列中的唯一内容来计算所需的数据透视项的数量并正确创建数据透视缓存。然后,我们需要将 A 列中的不同内容从“默认”更改为真正的数据透视字段项。这些数据透视字段项必须设置指向数据透视缓存的属性x。并且必须正确创建数据透视缓存,并在 A 列中包含单个唯一内容。此外,属性 sd 必须设置为 false,这表示隐藏该项目的详细信息。

完整示例:

Excel:

enter image description here

代码:

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

import java.io.FileOutputStream;
import java.io.FileInputStream;

import java.util.List;
import java.util.Set;
import java.util.HashSet;

class ExcelPivotTableTest {

public static void main(String[] args) throws Exception{

XSSFWorkbook workbook = (XSSFWorkbook)WorkbookFactory.create(new FileInputStream("PivotExample.xlsx"));
XSSFSheet dataSheet = workbook.getSheet("Data");

XSSFSheet pivotSheet = workbook.createSheet("Pivot");

AreaReference a = new AreaReference("A1:G" + (dataSheet.getLastRowNum() + 1), SpreadsheetVersion.EXCEL2007);
CellReference b = new CellReference("A1");

XSSFPivotTable pivotTable = pivotSheet.createPivotTable(a, b, dataSheet);

pivotTable.addRowLabel(6); //column G as first row label

pivotTable.addRowLabel(0); //column A as second row label - shall be collapsed

//we need unique contents in column A for creating the pivot cache
Set<String> colAValues = new HashSet<String>();
for (int r = 1; r < dataSheet.getLastRowNum() + 1; r++) {
Row row = dataSheet.getRow(r);
if (row != null) {
Cell cell = row.getCell(0);
if (cell != null) {
colAValues.add(cell.toString());
}
}
}

//now go through all pivot items of first pivot field
List<org.openxmlformats.schemas.spreadsheetml.x2006.main.CTItem> itemList =
pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(0).getItems().getItemList();
int i = 0;
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTItem item = null;
for (String value : colAValues) { //as long as there are different column A values
item = itemList.get(i);
item.unsetT(); //unset the type "default"
item.setX(i++); //set x
pivotTable.getPivotCacheDefinition().getCTPivotCacheDefinition().getCacheFields()
.getCacheFieldArray(0).getSharedItems().addNewS().setV(value); //create pivot cache entry
item.setSd(false); //set sd false = indicates that the details are hidden for this item
}
while (i < itemList.size()) {
item = itemList.get(i++);
item.setSd(false);
}


pivotTable.addRowLabel(2); //column C as third row label

pivotTable.addRowLabel(3); //column D as row label - shall be column label instead
//do changing column D to a col label
pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(3)
.setAxis(org.openxmlformats.schemas.spreadsheetml.x2006.main.STAxis.AXIS_COL); //AXIS_COL
//remove column D from RowFields
pivotTable.getCTPivotTableDefinition().getRowFields().removeField(3);
pivotTable.getCTPivotTableDefinition().getRowFields().setCount(3);
//create ColFields for column D
pivotTable.getCTPivotTableDefinition().addNewColFields().addNewField().setX(3);
pivotTable.getCTPivotTableDefinition().getColFields().setCount(1);

pivotTable.addColumnLabel(DataConsolidateFunction.SUM, 4, "Sum");

workbook.write(new FileOutputStream("PivotExample_New.xlsx"));
workbook.close();

}
}

此代码需要 ooxml-schemas-1.3.jar,如 apache poi FAQ 中所述。 .

结果: enter image description here

关于java - 如何从java折叠数据透视表中的所有字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52058700/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com