這篇文章給大家分享的是有關Java使用itext5實現PDF表格文檔導出的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
專注于為中小企業提供網站設計制作、成都網站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業岱岳免費做網站提供優質的服務。我們立足成都,凝聚了一批互聯網行業人才,有力地推動了上1000+企業的穩健成長,幫助中小企業通過網站建設實現規模擴充和轉變。
最近拿到一個需求,需要導出PDF文檔,市面上可以實現的方法有很多,經過測試和調研決定使用itext5來實現,話不多說,說干就干。
1.依賴導入
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.13.1</version> </dependency> <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-asian</artifactId> <version>5.2.0</version> </dependency>
這里說明下:上面的依賴就是主要實現PDF生成的,下面的依賴是中文字體相關依賴;
2.PDF表格導出實現
1.導出PDF
// 1.打開文檔并設置基本屬性 Document document = new Document(); // 2.設置請求頭,encode文件名 response.setContentType("application/pdf;charset=UTF-8"); response.setHeader("Content-Disposition", "attachment; filename=" + java.net.URLEncoder.encode("" + recordDto.getTitle() + ".pdf", "UTF-8")); // 3.通過流將pdf實例寫出到瀏覽器 PdfWriter writer = PdfWriter.getInstance(document, response.getOutputStream());
至此導出PDF已經實現了,只是這個PDF中什么內容都沒有,明白這一點,接下來做的就是給這個文檔“加料”咯(這里的response就是HttpServletResponse)。
2.頁面美化
// 這里的wirter就是上文的writer writer.setViewerPreferences(PdfWriter.PageModeUseThumbs); writer.setPageSize(PageSize.A4);
這里設置了文檔的顯示縮略圖以及文檔大小為A4;
3.中文字體設置
public static Font getPdfChineseFont() throws Exception { BaseFont bfChinese = BaseFont.createFont("STSongStd-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED); Font fontChinese = new Font(bfChinese, 12, Font.NORMAL); fontChinese.setColor(BaseColor.BLACK); fontChinese.setSize(11); return fontChinese; }
這個方法設置了中文字體樣式,感興趣的同學可以試試其他的樣式,例如:字體顏色,大小,字體都可以修改;
4.輸出表格內容到文檔
// 首先打開文檔 document.open(); // 向文檔中添加表格數據 private static void printBasicInfo(ShopApplyRecordDto recordDto, Document document, Font font) throws DocumentException { // 表格中的數據 Object[][] basicDatas = { {"標題","xxx申請", "審批編號","1234"}, {"申請人","小明", "申請商鋪","xxx商場"}, {"申請日期","2020/1/16", "審批結果","同意")}}; // 每個cell的寬度 float[] widthss = {50, 200, 50, 200}; // 創建一個表格,每一行有四個cell PdfPTable basicTable = new PdfPTable(widthss); // 外層循環表格的行 for (int i = 0; i < basicDatas.length; i++) { // 內層循環每一行具體數據 for (int j = 0; j < basicDatas[i].length; j++) { // 新建一個cell PdfPCell cell = new PdfPCell(); // 這個方法是統一設置表格和cell的樣式,下面會寫 setTableStyle(basicTable, cell); // cell中需要填充數據的格式 Paragraph paragraph = new Paragraph(StrUtil.toString(basicDatas[i][j]), font); // 設置cell的值 cell.setPhrase(paragraph); // 將cell添加到表格中 basicTable.addCell(cell); } } // 將表格添加到文檔中 document.add(basicTable); } // 結束時要關閉文檔 document.close();
大功告成,現在導出的PDF中已經有了類似這樣的表格了:
當然你的樣式會很丑,接下來我們來設置下樣式。
5.表格和cell樣式設置
public static void setTableStyle(PdfPTable table, PdfPCell cell) { // 設置表格樣式 table.setLockedWidth(true); table.setTotalWidth(500); table.setHorizontalAlignment(Element.ALIGN_LEFT); // 設置單元格樣式 cell.setMinimumHeight(35); cell.setHorizontalAlignment(Element.ALIGN_CENTER); cell.setVerticalAlignment(Element.ALIGN_MIDDLE); cell.setBackgroundColor(BaseColor.WHITE); cell.setBorder(0); cell.setBorderWidthTop(0.1f); cell.setBorderWidthBottom(0.1f); cell.setBorderWidthLeft(0.1f); cell.setBorderWidthRight(0.1f); cell.setBorderColorBottom(BaseColor.BLACK); cell.setBorderColorLeft(BaseColor.BLACK); cell.setBorderColorRight(BaseColor.BLACK); cell.setBorderColorTop(BaseColor.BLACK); cell.setPadding(3); }
api方法還是比較易懂的,這里就不多贅述了,不明白的自己設置試試就可以做出自己喜歡的樣式咯。
6.頁眉和頁碼的設置
這里說明下,itext2和itext5的api有很大不同,2的版本有一個專門的HeaderFooter類來設置樣式,5的版本沒有這樣的類,取而代之的是PdfPageEventHelper這樣一個事件處理類,這里大家千萬別弄混了,這兩個版本的api互相不兼容;
這里首先寫一個PdfPageEventHelper的子類來實現頁眉頁碼的打印:
public class HeaderFooter extends PdfPageEventHelper { // 這里是業務相關的屬性可以無視 private ShopApplyRecordDto recordDto; private SysUserInfo userInfo; // 大部分情況下頁眉的值是動態的,這里可以在初始化的時候進行參數傳遞 public HeaderFooter(ShopApplyRecordDto recordDto, SysUserInfo userInfo) { this.recordDto = recordDto; this.userInfo = userInfo; } public HeaderFooter() { } public ShopApplyRecordDto getRecordDto() { return recordDto; } public void setRecordDto(ShopApplyRecordDto recordDto) { this.recordDto = recordDto; } public SysUserInfo getUserInfo() { return userInfo; } public void setUserInfo(SysUserInfo userInfo) { this.userInfo = userInfo; } // 這個方法就是實現頁眉和頁碼的關鍵:它的含義是每當頁面結束會執行該方法 @Override public void onEndPage(PdfWriter writer, Document document) { Font font = null; try { font = getPdfChineseFont(); } catch (Exception e) { e.printStackTrace(); } SimpleDateFormat format = new SimpleDateFormat("yyyy/MM/dd HH:mm"); // 設置頁眉:這里圖省事就用空格來實現左中右三個位置的頁眉,其實可以寫三個,通過Element.ALIGN_LEFT來控制頁眉的位置,document.left()/document.top()這兩個可以設置頁眉具體位置類似于html的上下調整,大家可以多試試 ColumnText.showTextAligned(writer.getDirectContent(), Element.ALIGN_LEFT, new Phrase("所屬項目:" + recordDto.getMallName() + " 打印時間:" + format.format(new Date()) + " 打印人:" + userInfo.getUserName(), font), document.left(), document.top() + 3, 0); // 獲得一個名為“art”的盒子 Rectangle rect = writer.getBoxSize("art"); // 設置頁碼:這里的頁碼位置已經設置好,大家可直接使用,至于1/20這種效果的頁碼實現則十分復雜,如有需求請自行百度/谷歌 ColumnText.showTextAligned(writer.getDirectContent(), Element.ALIGN_CENTER, new Phrase(String.format("%d", writer.getPageNumber())), (rect.getLeft() + rect.getRight()) / 2, rect.getBottom() - 18, 0); } public static Font getPdfChineseFont() throws Exception { BaseFont bfChinese = BaseFont.createFont("STSongStd-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED); Font fontChinese = new Font(bfChinese, 12, Font.NORMAL); fontChinese.setColor(BaseColor.BLACK); fontChinese.setSize(11); return fontChinese; } } 接下來就很簡單了,將我們的HeaderFooter設置給PdfWriter對象即可: // 新建HeaderFooter并傳遞需要的參數 HeaderFooter headerFooter = new HeaderFooter(recordDto, userInfo); // 新建一個盒子 Rectangle rect = new Rectangle(36, 54, 559, 788); // 設置名稱為“art”,上面get的就是這個盒子了 writer.setBoxSize("art", rect); writer.setPageEvent(headerFooter); // 這個可以設置內容的margin document.setMargins(45f, 45f, 65f, 50f);
7.效果展示
感謝各位的閱讀!關于“Java使用itext5實現PDF表格文檔導出的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
網頁名稱:Java使用itext5實現PDF表格文檔導出的示例分析
URL鏈接:http://vcdvsql.cn/article44/gjdoee.html
成都網站建設公司_創新互聯,為您提供手機網站建設、云服務器、網站收錄、定制開發、面包屑導航、外貿建站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯