目录

如何使用Java在PDF中创建表。(How to create a table in a PDF using Java.)

问题描述 (Problem Description)

如何使用Java在PDF中创建表。

解决方案 (Solution)

以下是使用Java在PDF中创建表的程序。

import com.itextpdf.kernel.pdf.PdfDocument; 
import com.itextpdf.kernel.pdf.PdfWriter; 
import com.itextpdf.layout.Document; 
import com.itextpdf.layout.element.Cell; 
import com.itextpdf.layout.element.Table;  
public class AddingTableToPDF { 
   public static void main(String args[]) throws Exception { 
      String file = "C:/EXAMPLES/itextExamples/addingTableToPDF.pdf"; 
      //Creating a PdfDocument object 
      PdfDocument pdfDoc = new PdfDocument(new PdfWriter(file));     
      //Creating a Document object 
      Document doc = new Document(pdfDoc);        
      //Creating a table 
      Table table = new Table(2);     
      //Adding cells to the table 
      table.addCell(new Cell().add("Name")); 
      table.addCell(new Cell().add("Raju")); 
      table.addCell(new Cell().add("Id")); 
      table.addCell(new Cell().add("1001")); 
      table.addCell(new Cell().add("Designation")); 
      table.addCell(new Cell().add("Programmer")); 
      //Adding Table to document  
      doc.add(table);
      //Closing the document 
      doc.close();  
      System.out.println("Table created successfully.."); 
   }     
}

输出 (Output)

创建表
↑回到顶部↑
WIKI教程 @2018