這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)java中怎么利用poi導(dǎo)出excel透視表,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
我們擁有十年網(wǎng)頁(yè)設(shè)計(jì)和網(wǎng)站建設(shè)經(jīng)驗(yàn),從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁(yè)設(shè)計(jì)師為您提供的解決方案。為企業(yè)提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、微信開發(fā)、重慶小程序開發(fā)公司、手機(jī)網(wǎng)站制作設(shè)計(jì)、HTML5建站、等業(yè)務(wù)。無論您有什么樣的網(wǎng)站設(shè)計(jì)或者設(shè)計(jì)方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計(jì)服務(wù)并滿足您的需求。
代碼如下:
// 利用esaypoi生成excel數(shù)據(jù),即sheet1里面的數(shù)據(jù) Workbook workbook = ExcelExportUtil.exportExcel(new ExportParams(null, "sheet1", ExcelType.XSSF), pojoClass, list); Sheet sheet1 = workbook.getSheetAt(0); sheet1.setDefaultColumnWidth(50 * 256); sheet1.setDefaultRowHeight((short)(2 * 256)); // 創(chuàng)建數(shù)據(jù)透視sheet XSSFSheet pivotSheet = (XSSFSheet )workbook.createSheet(); pivotSheet.setDefaultColumnWidth(50 * 256); // 獲取數(shù)據(jù)sheet的總行數(shù) int num = sheet1.getLastRowNum(); // 數(shù)據(jù)透視表數(shù)據(jù)源的起點(diǎn)單元格位置 CellReference topLeft = new CellReference("A1"); // 數(shù)據(jù)透視表數(shù)據(jù)源的終點(diǎn)單元格位置 CellReference botRight = new CellReference(("M"+num)); // 數(shù)據(jù)透視表生產(chǎn)的起點(diǎn)單元格位置 CellReference ptStartCell = new CellReference("A1"); AreaReference areaR = new AreaReference(topLeft, botRight); XSSFPivotTable pivotTable = pivotSheet.createPivotTable(areaR, ptStartCell, sheet1); // 添加行標(biāo)簽 pivotTable.addRowLabel(4); // 部門 pivotTable.addRowLabel(1); // 科目 pivotTable.addRowLabel(0); // 借貸方向 pivotTable.addRowLabel(11); // 單據(jù)編號(hào) pivotTable.addRowLabel(12); // 憑證編號(hào) pivotTable.addRowLabel(9); // 付款編碼 pivotTable.addRowLabel(10); // 付款時(shí)間 pivotTable.addColumnLabel(DataConsolidateFunction.SUM, 3, "分錄金額"); // 將透視表的列以表格的樣式顯示 這個(gè)地方弄了好久 int count = 13; // count為數(shù)據(jù)源的列的數(shù)量 for (int i = 0; i < count; i++) { CTPivotField ctPivotField = pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(i); ctPivotField.setOutline(false); }
上述就是小編為大家分享的java中怎么利用poi導(dǎo)出excel透視表了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。