彩票走势图

Excel处理开发工具Aspose.Cells功能演示:使用Java以编程方式在Excel中创建数据透视表

翻译|使用教程|编辑:李显亮|2021-04-27 09:45:00.907|阅读 179 次

概述:使用数据透视表汇总按客户或产品分组的发票。在本文中,将学习如何以编程方式处理Excel中的数据透视表。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Excel电子表格中的数据透视表用于以交互方式汇总数据。假设在工作表中有许多发票的数据。在这种情况下,可以使用数据透视表汇总按客户或产品分组的发票。在本文中,将学习如何以编程方式处理Excel中的数据透视表。特别是,将了解如何在Java中创建数据透视表并基于该数据透视表生成图表。

  • 使用Java在Excel中创建数据透视表
  • 使用数据透视表生成图表

为了使用Excel数据透视表,我们将使用Aspose.Cells for Java,它是一个功能强大的API,可让您从Java应用程序内部生成,修改和转换Excel文件。点击下方按钮可下载试用。

使用Java在Excel中创建数据透视表

以下是使用Java在Excel中创建数据透视表的步骤。

  • 使用工作簿类创建一个新的或加载一个现有的Excel文件。
  • 用数据填充工作表(可选)。
  • 使用Worksheet.getPivotTables()方法将数据透视表收集到一个PivotTableCollection对象中。
  • 使用PivotTableCollection.add(string, string, string)方法添加一个新的透视表,并在PivotTable对象中获得其引用。
  • 设置选项,如总计、格式化等。
  • 使用PivotTable.addFieldToArea(int, int)方法向区域添加字段。
  • 使用Workbook.save(string)方法保存工作簿。

下面的代码示例演示如何使用Java在Excel中添加数据透视表。

// Instantiate an Workbook object
Workbook workbook = new Workbook("worksheet.xlsx");

// Access the sheet
Worksheet sheet2 = workbook.getWorksheets().get(1);

// Get the pivottables collection in the sheet
PivotTableCollection pivotTables = sheet2.getPivotTables();

// Add a PivotTable to the worksheet
int index = pivotTables.add("=Data!A1:F30", "B3", "PivotTable1");

// Access the instance of the newly added PivotTable
PivotTable pivotTable = pivotTables.get(index);

// Show the grand totals
pivotTable.setRowGrand(true);
pivotTable.setColumnGrand(true);

// Set the PivotTable report is automatically formatted
pivotTable.setAutoFormat(true);

// Set the PivotTable autoformat type.
pivotTable.setAutoFormatType(PivotTableAutoFormatType.REPORT_6);

// Drag the first field to the row area.
pivotTable.addFieldToArea(PivotFieldType.ROW, 0);

// Drag the third field to the row area.
pivotTable.addFieldToArea(PivotFieldType.ROW, 2);

// Drag the second field to the row area.
pivotTable.addFieldToArea(PivotFieldType.ROW, 1);

// Drag the fourth field to the column area.
pivotTable.addFieldToArea(PivotFieldType.COLUMN, 3);

// Drag the fifth field to the data area.
pivotTable.addFieldToArea(PivotFieldType.DATA, 5);

// Set the number format of the first data field
pivotTable.getDataFields().get(0).setNumber(7);

// Save the Excel file
workbook.save("pivotTable.xls");

Excel表格

Excel处理开发工具Aspose.Cells功能演示:使用Java以编程方式在Excel中创建数据透视表

数据透视表

Excel处理开发工具Aspose.Cells功能演示:使用Java以编程方式在Excel中创建数据透视表

使用Java中的Excel数据透视表生成图表

以下是使用Java中的Excel数据透视表生成图表的步骤。

  • 使用工作簿类创建一个新的或加载一个现有的Excel文件。
  • 填充工作表(可选)。
  • 使用Workbook.getWorksheets().add(SheetType.CHART)方法添加一个新的图表类型的工作表,并在一个工作表对象中获得其引用。
  • 使用Worksheet.getCharts().add()方法添加一个新的图表,并在Chart对象中获得其引用。
  • 使用Chart.setPivotSource(string)方法将透视表设置为图表的数据源。
  • 使用Workbook.save(string)方法保存工作簿。

下面的代码示例显示了如何在Java中使用Excel透视表生成图表。

 // Instantiate an Workbook object
 Workbook workbook = new Workbook("pivotTable.xls");
 
 // Add a new sheet
 int sheetIndex = workbook.getWorksheets().add(SheetType.CHART);
 Worksheet sheet3 = workbook.getWorksheets().get(sheetIndex);
 
 // Name the sheet
 sheet3.setName("PivotChart");
 
 // Add a column chart
 int chartIndex = sheet3.getCharts().add(ChartType.COLUMN, 0, 5, 28, 16);
 Chart chart = sheet3.getCharts().get(chartIndex);
 
 // Set the pivot chart data source
 chart.setPivotSource("PivotTable!PivotTable1");
 chart.setHidePivotFieldButtons(false);
 
 // Save the Excel file
 workbook.save("pivotChart_test.xls");

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP