📜  iText-格式化单元格内容

📅  最后修改于: 2020-10-16 02:49:21             🧑  作者: Mango


在本章中,我们将了解如何使用iText库创建PDF文档,添加表格以及格式化表格中单元格的内容。

格式化表格中的单元格

您可以通过实例化Document类来创建一个空的PDF Document 。在实例化此类时,您需要将PdfDocument对象作为参数传递给其构造函数。然后,要将表添加到文档中,您需要实例化Table类,并使用add()方法将此对象添加到文档中。您可以使用Cell类的方法来格式化表格中单元格的内容。

以下是格式化表格中单元格内容的步骤。

步骤1:创建一个PdfWriter对象

PdfWriter类表示PDF的DocWriter。此类属于包com.itextpdf.kernel.pdf 。此类的构造函数接受一个字符串,该字符串表示要在其中创建PDF的文件的路径。

实例化PdfWriter类,方法是将一个字符串值(代表您需要在其中创建PDF的路径)传递给它的构造函数,如下所示。

// Creating a PdfWriter 
String dest = "C:/itextExamples/addingBackground.pdf"; 
PdfWriter writer = new PdfWriter(dest); 

当将此类型的对象传递到PdfDocument(类)时,添加到此文档的每个元素都将被写入指定的文件。

步骤2:创建一个PdfDocument对象

PdfDocument类是表示iText中PDFDocument的类。此类属于包com.itextpdf.kernel.pdf 。要实例化此类(以编写模式),您需要将PdfWriter类的对象传递给其构造函数。

通过将上面创建的PdfWriter对象传递给其构造函数来实例化PdfDocument类,如下所示。

// Creating a PdfDocument  
PdfDocument pdfDoc = new PdfDocument(writer); 

创建PdfDocument对象后,您可以使用其类提供的相应方法添加各种元素,如页面,字体,文件附件和事件处理程序。

步骤3:创建Document对象

com.itextpdf.layoutDocument类是创建自足PDF的根元素。此类的构造函数之一接受PdfDocument类的对象。

通过传递在先前步骤中创建的PdfDocument类的对象来实例化Document类,如下所示。

// Creating a Document   
Document document = new Document(pdfDoc); 

步骤4:创建表对象

Table类表示填充有单元的二维网格,按行和列排序。它属于包com.itextpdf.layout.element

实例化Table类,如下所示。

// Creating a table 
float [] pointColumnWidths = {200F, 200F}; 
Table table = new Table(pointColumnWidths); 

步骤5:建立储存格

通过实例化com.itextpdf.layout.element包的Cell类来创建单元对象。如下所示,使用Cell类的add()方法添加单元格的内容。

// Adding cell 1 to the table 
Cell cell1 = new Cell();     // Creating a cell 
cell1.add("Name");           // Adding content to the cell       

// Adding cell 2 to the table 
Cell cell2 = new Cell();     // Creating a cell 
cell2.add("Raju");           // Adding content to the cell 

步骤6:将背景添加到单元格

一旦创建了单元并向其中添加了内容,就可以格式化该单元。例如,您可以使用单元格类的不同方法(例如setBackgroundColor(),setBorder(),setTextAlignment())设置其背景,在单元格内对齐文本,更改文本颜色等。

您可以为上一步中创建的单元格设置背景颜色,边框和文本对齐方式,如下所示。

c1.setBackgroundColor(Color.DARK_GRAY);    // Setting background color to cell1 
c1.setBorder(Border.NO_BORDER);            // Setting border to cell1 
c1.setTextAlignment(TextAlignment.CENTER); // Setting text alignment to cell1 

步骤7:将单元格添加到表中

最后,要将此单元格添加到表中,请调用Table类的addCell()方法,并将单元格对象作为参数传递给此方法,如下所示。

table.addCell(c1);

步骤8:将表添加到文档

如下所示,使用Document类的add()方法添加在上一步中创建的对象。

// Adding list to the document 
document.add(table);

步骤9:关闭文档

使用Document类的close()方法关闭文档,如下所示。

// Closing the document 
document.close();

以下Java程序演示了如何使用iText库格式化表格中单元格的内容。它创建一个名称为addingBackground.pdf的PDF文档,向其中添加一个表格,格式化其单元格的内容,并将其保存在路径C:/ itextExamples /

将此代码保存在名为BackgroundToTable.java的文件中。

import com.itextpdf.kernel.color.Color; 
import com.itextpdf.kernel.pdf.PdfDocument; 
import com.itextpdf.kernel.pdf.PdfWriter; 

import com.itextpdf.layout.Document;
import com.itextpdf.layout.border.Border; 
import com.itextpdf.layout.element.Cell; 
import com.itextpdf.layout.element.Table; 
import com.itextpdf.layout.property.TextAlignment;  

public class BackgroundToTable {      
   public static void main(String args[]) throws Exception {        
      // Creating a PdfWriter object   
      String dest = "C:/itextExamples/addingBackground.pdf";   
      PdfWriter writer = new PdfWriter(dest);                  
      
      // Creating a PdfDocument object       
      PdfDocument pdfDoc = new PdfDocument(writer);                   
      
      // Creating a Document object      
      Document doc = new Document(pdfDoc); 
      
      // Creating a table       
      float [] pointColumnWidths = {200F, 200F};       
      Table table = new Table(pointColumnWidths);
      
      // Populating row 1 and adding it to the table               
      Cell c1 = new Cell();                        // Creating cell 1 
      c1.add("Name");                              // Adding name to cell 1   
      c1.setBackgroundColor(Color.DARK_GRAY);      // Setting background color
      c1.setBorder(Border.NO_BORDER);              // Setting border
      c1.setTextAlignment(TextAlignment.CENTER);   // Setting text alignment      
      table.addCell(c1);                           // Adding cell 1 to the table 
      
      Cell c2 = new 
      Cell();                               
      c2.add("Raju");       
      c2.setBackgroundColor(Color.GRAY);       
      c2.setBorder(Border.NO_BORDER);       
      c2.setTextAlignment(TextAlignment.CENTER);      
      table.addCell(c2);      
      
      // Populating row 2 and adding it to the table               
      Cell c3 = new Cell();       
      c3.add("Id");       
      c3.setBackgroundColor(Color.WHITE);       
      c3.setBorder(Border.NO_BORDER);       
      c3.setTextAlignment(TextAlignment.CENTER);      
      table.addCell(c3);                          
      
      Cell c4 = new Cell();       
      c4.add("001");       
      c4.setBackgroundColor(Color.WHITE);       
      c4.setBorder(Border.NO_BORDER);       
      c4.setTextAlignment(TextAlignment.CENTER);      
      table.addCell(c4);                          
      
      // Populating row 3 and adding it to the table        
      Cell c5 = new Cell();       
      c5.add("Designation");       
      c5.setBackgroundColor(Color.DARK_GRAY);       
      c5.setBorder(Border.NO_BORDER);       
      c5.setTextAlignment(TextAlignment.CENTER);      
      table.addCell(c5);                 
      
      Cell c6 = new Cell(); 
      c6.add("Programmer");       
      c6.setBackgroundColor(Color.GRAY);       
      c6.setBorder(Border.NO_BORDER);       
      c6.setTextAlignment(TextAlignment.CENTER);       
      table.addCell(c6);                              
      
      // Adding Table to document        
      doc.add(table);                  
      
      // Closing the document       
      doc.close();  
      
      System.out.println("Background added successfully..");     
   } 
} 

使用以下命令从命令提示符处编译并执行保存的Java文件-

javac BackgroundToTable.java 
java BackgroundToTable 

执行后,上述程序将创建一个PDF文档,并显示以下消息。

Background added successfully..

如果验证指定的路径,则可以找到创建的PDF文档,如下所示。

添加背景