Java 建立、重新整理Excel透視表/設定透視錶行摺疊、展開

iceblue發表於2020-08-11

透視表是依據已有資料來源來建立的互動式表格,我們可在excel中建立透視表,也可編輯已有透視表。本文以建立透視表、重新整理透視表以及設定透視表的行展開或摺疊為例,介紹具體的操作方法。

 

所需工具:Free Spire.XLS for Java免費版,編輯程式碼前,先下載匯入jar到Java程式(可手動 下載匯入,或通過 Maven倉庫下載匯入)。

 


 

示例程式碼

1. 建立透視表

import com.spire.xls.*;
  
 public class CreatePivotTable {
     public static void main(String[] args) {
         //載入Excel測試文件
         Workbook wb = new Workbook();
         wb.loadFromFile("test.xlsx");
  
         //獲取第一個的工作表
         Worksheet sheet = wb.getWorksheets().get(0);
  
         //為需要彙總和分析的資料建立快取
         CellRange dataRange = sheet.getCellRange("A1:D10");
         PivotCache cache = wb.getPivotCaches().add(dataRange);
  
         //使用快取建立資料透視表,並指定透視表的名稱以及在工作表中的位置
         PivotTable pt = sheet.getPivotTables().add("PivotTable",sheet.getCellRange("A12"),cache);
  
         //新增行欄位1
         PivotField pf1 = null;
         if (pt.getPivotFields().get("月份") instanceof PivotField){
             pf1 = (PivotField) pt.getPivotFields().get("月份");
         }
         pf1.setAxis(AxisTypes.Row);
  
         //新增行欄位2
         PivotField pf2 = null;
         if (pt.getPivotFields().get("廠商") instanceof PivotField){
             pf2 = (PivotField) pt.getPivotFields().get("廠商");
         }
         pf2.setAxis(AxisTypes.Row);
         //設定行欄位的標題
         pt.getOptions().setRowHeaderCaption("月份");
  
         //新增列欄位
         PivotField pf3 = null;
         if (pt.getPivotFields().get("產品") instanceof PivotField){
             pf3 = (PivotField) pt.getPivotFields().get("產品");
         }
         pf3.setAxis(AxisTypes.Column);
         //設定列欄位標題
         pt.getOptions().setColumnHeaderCaption("產品");
  
         //新增值欄位
         pt.getDataFields().add(pt.getPivotFields().get("總產量"),"求和項:總產量",SubtotalTypes.Sum);
  
         //設定透視表樣式
         pt.setBuiltInStyle(PivotBuiltInStyles.PivotStyleDark12);
  
         //儲存文件
         wb.saveToFile("資料透視表.xlsx", ExcelVersion.Version2013);
         wb.dispose();
     }
 }

透視表建立結果:

 

2. 重新整理透視表

 import com.spire.xls.*;
  
 public class RefreshPivotTable {
     public static void main(String[] args) {
         //建立例項,載入Excel
         Workbook wb = new Workbook();
         wb.loadFromFile("資料透視表.xlsx");
  
         //獲取第一個工作表
         Worksheet sheet = wb.getWorksheets().get(0);
  
         //更改透視表的資料來源資料
         sheet.getCellRange("C2:C4").setText("產品A");
         sheet.getCellRange("C5:C7").setText("產品B");
         sheet.getCellRange("C8:C10").setText("產品C");
  
         //獲取透視表,重新整理資料
         PivotTable pivotTable = (PivotTable) sheet.getPivotTables().get(0);
         pivotTable.getCache().isRefreshOnLoad();
  
         //儲存文件
         wb.saveToFile("重新整理透視表.xlsx",FileFormat.Version2013);
     }
 }

透視表更新前後效果:

 

3. 摺疊、展開透視表中的行

 import com.spire.xls.*;
 import com.spire.xls.core.spreadsheet.pivottables.XlsPivotTable;
  
 public class ExpandRows {
     public static void main(String[] args) {
         //載入包含透視表的Excel
         Workbook wb = new Workbook();
         wb.loadFromFile("資料透視表.xlsx");
  
         //獲取資料透視表
         XlsPivotTable pivotTable = (XlsPivotTable) wb.getWorksheets().get(0).getPivotTables().get(0);
  
         //計算資料
         pivotTable.calculateData();
  
         //展開”月份”欄位下“2”的詳細資訊
         PivotField field = (PivotField) pivotTable.getPivotFields().get("月份");
         field.hideItemDetail("2",false);
  
         //摺疊”月份”欄位下“3”的詳細資訊
         PivotField field1 = (PivotField) pivotTable.getPivotFields().get("月份");
         field1.hideItemDetail("3",true);
  
         //儲存並開啟文件
         wb.saveToFile("展開、摺疊行.xlsx", ExcelVersion.Version2013);
         wb.dispose();
     }
 }

摺疊、展開效果:

 

相關文章