使用iText生成PDF檔案
阿新 • • 發佈:2019-01-11
iText是著名的開放原始碼的站點sourceforge一個專案,是用於生成PDF文件的一個java類庫。通過iText不僅可以生成PDF或rtf的文件,而且可以將XML、Html檔案轉化為PDF檔案。
專案要使用iText,必須引入jar包。才能使用,maven依賴如下:
1 <dependency> 2 <groupId>com.itextpdf</groupId> 3 <artifactId>itextpdf</artifactId> 4 <version>5.5.10</version> 5</dependency>
輸出中文,還要引入下面itext-asian.jar包:
1 <dependency> 2 <groupId>com.itextpdf</groupId> 3 <artifactId>itext-asian</artifactId> 4 <version>5.2.0</version> 5 </dependency>
設定pdf檔案密碼,還要引入下面bcprov-jdk15on.jar包:
1 <dependency> 2<groupId>org.bouncycastle</groupId> 3 <artifactId>bcprov-jdk15on</artifactId> 4 <version>1.54</version> 5 </dependency>
iText常用類
- com.itextpdf.text.Document:這是iText庫中最常用的類,它代表了一個pdf例項。如果你需要從零開始生成一個PDF檔案,你需要使用這個Document類。首先建立(new)該例項,然後開啟(open)它,並新增(add)內容,最後關閉(close)該例項,即可生成一個pdf檔案。
- com.itextpdf.text.Paragraph:表示一個縮排的文字段落,在段落中,你可以設定對齊方式,縮排,段落前後間隔等。
- com.itextpdf.text.Chapter:表示PDF的一個章節,他通過一個Paragraph型別的標題和整形章數建立。
- com.itextpdf.text.Font:這個類包含了所有規範好的字型,包括family of font,大小,樣式和顏色,所有這些字型都被宣告為靜態常量。
- com.itextpdf.text.List:表示一個列表;
- cocom.itextpdf.text.List:表示一個列表;
- com.itextpdf.text.Anchor:表示一個錨,類似於HTML頁面的連結。
- com.itextpdf.text.pdf.PdfWriter:當這個PdfWriter被新增到PdfDocument後,所有新增到Document的內容將會寫入到與檔案或網路關聯的輸出流中。
- com.itextpdf.text.pdf.PdfReader:用於讀取PDF檔案;
iText使用
- 建立一個簡單的pdf檔案,如下:
1 package com.hd.pdf; 2 3 import java.io.FileNotFoundException; 4 import java.io.FileOutputStream; 5 6 import com.itextpdf.text.Document; 7 import com.itextpdf.text.DocumentException; 8 import com.itextpdf.text.Paragraph; 9 import com.itextpdf.text.pdf.PdfWriter; 10 11 public class TestPDFDemo1 { 12 13 public static void main(String[] args) throws FileNotFoundException, DocumentException { 14 15 // 1.新建document物件 16 Document document = new Document(); 17 18 // 2.建立一個書寫器(Writer)與document物件關聯,通過書寫器(Writer)可以將文件寫入到磁碟中。 19 // 建立 PdfWriter 物件 第一個引數是對文件物件的引用,第二個引數是檔案的實際名稱,在該名稱中還會給出其輸出路徑。 20 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test.pdf")); 21 22 // 3.開啟文件 23 document.open(); 24 25 // 4.新增一個內容段落 26 document.add(new Paragraph("Hello World!")); 27 28 // 5.關閉文件 29 document.close(); 30 31 } 32 33 }
開啟檔案
-
給PDF檔案設定檔案屬性,例如:
1 public static void main(String[] args) throws FileNotFoundException, DocumentException { 2 3 //建立檔案 4 Document document = new Document(); 5 //建立一個書寫器 6 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test2.pdf")); 7 //開啟檔案 8 document.open(); 9 //新增內容 10 document.add(new Paragraph("Some content here")); 11 12 //設定屬性 13 //標題 14 document.addTitle("this is a title"); 15 //作者 16 document.addAuthor("H__D"); 17 //主題 18 document.addSubject("this is subject"); 19 //關鍵字 20 document.addKeywords("Keywords"); 21 //建立時間 22 document.addCreationDate(); 23 //應用程式 24 document.addCreator("hd.com"); 25 26 //關閉文件 27 document.close(); 28 //關閉書寫器 29 writer.close(); 30 }
開啟檔案
-
PDF中新增圖片
1 public static void main(String[] args) throws DocumentException, IOException { 2 3 //建立檔案 4 Document document = new Document(); 5 //建立一個書寫器 6 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test3.pdf")); 7 //開啟檔案 8 document.open(); 9 //新增內容 10 document.add(new Paragraph("HD content here")); 11 12 //圖片1 13 Image image1 = Image.getInstance("C:/Users/H__D/Desktop/IMG_0109.JPG"); 14 //設定圖片位置的x軸和y周 15 image1.setAbsolutePosition(100f, 550f); 16 //設定圖片的寬度和高度 17 image1.scaleAbsolute(200, 200); 18 //將圖片1新增到pdf檔案中 19 document.add(image1); 20 21 //圖片2 22 Image image2 = Image.getInstance(new URL("http://static.cnblogs.com/images/adminlogo.gif")); 23 //將圖片2新增到pdf檔案中 24 document.add(image2); 25 26 //關閉文件 27 document.close(); 28 //關閉書寫器 29 writer.close(); 30 }
開啟檔案
-
PDF中建立表格
1 public static void main(String[] args) throws DocumentException, FileNotFoundException { 2 //建立檔案 3 Document document = new Document(); 4 //建立一個書寫器 5 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test4.pdf")); 6 //開啟檔案 7 document.open(); 8 //新增內容 9 document.add(new Paragraph("HD content here")); 10 11 // 3列的表. 12 PdfPTable table = new PdfPTable(3); 13 table.setWidthPercentage(100); // 寬度100%填充 14 table.setSpacingBefore(10f); // 前間距 15 table.setSpacingAfter(10f); // 後間距 16 17 List<PdfPRow> listRow = table.getRows(); 18 //設定列寬 19 float[] columnWidths = { 1f, 2f, 3f }; 20 table.setWidths(columnWidths); 21 22 //行1 23 PdfPCell cells1[]= new PdfPCell[3]; 24 PdfPRow row1 = new PdfPRow(cells1); 25 26 //單元格 27 cells1[0] = new PdfPCell(new Paragraph("111"));//單元格內容 28 cells1[0].setBorderColor(BaseColor.BLUE);//邊框驗證 29 cells1[0].setPaddingLeft(20);//左填充20 30 cells1[0].setHorizontalAlignment(Element.ALIGN_CENTER);//水平居中 31 cells1[0].setVerticalAlignment(Element.ALIGN_MIDDLE);//垂直居中 32 33 cells1[1] = new PdfPCell(new Paragraph("222")); 34 cells1[2] = new PdfPCell(new Paragraph("333")); 35 36 //行2 37 PdfPCell cells2[]= new PdfPCell[3]; 38 PdfPRow row2 = new PdfPRow(cells2); 39 cells2[0] = new PdfPCell(new Paragraph("444")); 40 41 //把第一行新增到集合 42 listRow.add(row1); 43 listRow.add(row2); 44 //把表格新增到檔案中 45 document.add(table); 46 47 //關閉文件 48 document.close(); 49 //關閉書寫器 50 writer.close(); 51 }
開啟檔案
-
PDF中建立列表
1 public static void main(String[] args) throws DocumentException, FileNotFoundException { 2 //建立檔案 3 Document document = new Document(); 4 //建立一個書寫器 5 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test5.pdf")); 6 //開啟檔案 7 document.open(); 8 //新增內容 9 document.add(new Paragraph("HD content here")); 10 11 //新增有序列表 12 List orderedList = new List(List.ORDERED); 13 orderedList.add(new ListItem("Item one")); 14 orderedList.add(new ListItem("Item two")); 15 orderedList.add(new ListItem("Item three")); 16 document.add(orderedList); 17 18 //關閉文件 19 document.close(); 20 //關閉書寫器 21 writer.close(); 22 }
開啟檔案
-
PDF中設定樣式/格式化輸出,輸出中文內容,必須引入itext-asian.jar
1 public static void main(String[] args) throws DocumentException, IOException { 2 //建立檔案 3 Document document = new Document(); 4 //建立一個書寫器 5 PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("C:/Users/H__D/Desktop/test6.pdf")); 6 //開啟檔案 7 document.open(); 8 9 //中文字型,解決中文不能顯示問題 10 BaseFont bfChinese = BaseFont.createFont("STSong-Light","UniGB-UCS2-H",BaseFont.NOT_EMBEDDED); 11 12 //藍色字型 13 Font blueFont = new Font(bfChinese); 14 blueFont.setColor(BaseColor.BLUE); 15 //段落文字 16 Paragraph paragraphBlue = new Paragraph("paragraphOne blue front", blueFont); 17 document.add(paragraphBlue); 18 19 //綠色字型 20 Font greenFont = new Font(bfChinese); 21 greenFont.setColor(BaseColor.GREEN); 22 //建立章節 23 Paragraph chapterTitle = new Paragraph("段落標題xxxx", greenFont); 24 Chapter chapter1 = new Chapter(chapterTitle, 1); 25 chapter1.setNumberDepth(0);