`

iText创建PDF文件

 
阅读更多
 	   Document doc = new Document (PageSize.A4);
	   PdfWriter.getInstance (doc, new FileOutputStream ("c:/test/pdf/test.pdf"));
	   doc.open ();

	   //标题字体
	   BaseFont bfTitle = BaseFont.createFont("STSong-Light", 
			   "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
			   Font titleFont = new Font(bfTitle, 18, Font.NORMAL);

       //内容字体
	   BaseFont bfComic = BaseFont.createFont("STSong-Light", 
			   "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
			   Font font = new Font(bfComic, 9, Font.NORMAL);
			   
	   Paragraph titleP=new Paragraph("儿童信息 Child Information\n\n",titleFont);
	   titleP.setAlignment(titleP.ALIGN_CENTER);
	   doc.add(titleP);
	   //生成4列的表格
	   PdfPTable table = new PdfPTable (4);
	   table.setWidthPercentage(100);
	   table.setWidthPercentage(100);
	   table.addCell (new Paragraph ("Children-id",font));
	   PdfPCell cell = new PdfPCell (new Paragraph ("09140800002",font));
	   cell.setColspan (3);
	   table.addCell (cell);
	   // 添加第一行
	   table.addCell (new Paragraph ("Name(CN)",font));
	   table.addCell (new Paragraph ("党宁生",font));
	   table.addCell (new Paragraph ("Name(EN)",font));
	   table.addCell (new Paragraph ("DANG NING SHENG",font));

	   //添加第二行
	   table.addCell (new Paragraph ("Sex(CN)",font));
	   table.addCell (new Paragraph ("男",font));
	   table.addCell (new Paragraph ("Sex(EN)",font));
	   table.addCell (new Paragraph ("MALE",font));
	   //添加第8行
	   table.addCell (new Paragraph ("Note",font));
	   cell = new PdfPCell (new Paragraph ("儿童资料",font));
	   cell.setColspan (3);
	   table.addCell (cell);
	   
	   //添加第9行
	   table.addCell (new Paragraph ("Pictures",font));
	   Image photo=Image.getInstance("c:/test/pdf/1246588678828.jpg");
	   cell = new PdfPCell (photo);
	   cell.setColspan (3);
	   table.addCell (cell);
	   
	   for(PdfPRow row:(ArrayList<PdfPRow>)table.getRows()){
		   for(PdfPCell cells:row.getCells()){
			   if(cells!=null){
				   cells.setPadding(10.0f);
			   }
		   }
	   }
	   
	   doc.add (table);
	   doc.newPage();
	   
	   //插入图片
	   doc.newPage();
	   Image image1 = Image.getInstance ("c:/test/pdf/1246588315281.jpg");
	   image1.setAlignment(image1.ALIGN_CENTER);
	   image1.scaleToFit( PageSize.A4.getHeight(),PageSize.A4.getWidth());
	   doc.add (image1);
	   
	   doc.close ();

 

 

第二种用PDFPtable 创建表格:

 

package com.xishui.action;

import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.taglibs.standard.lang.jstl.EmptyOperator;

import com.itextpdf.text.Element;
import com.lowagie.text.Cell;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;

public class iTextTablePage1 {

	public static void main(String[] args) {

		Document document = new Document();
		try {
			
			PdfWriter.getInstance(
								new FileOutputStream("c:\\iTextTablePage1.pdf"));
			
			document.open();

						float[] widths = { 1f };
			PdfPTable table = new PdfPTable(widths);

			table.setTotalWidth(800);// Total的高度,但不起作用j
			PdfPCell cell = new PdfPCell(new Paragraph(
					"Student Basic Data................\n\n"));

			cell.setFixedHeight(75);// 设置第一个表的高度
			table.setWidthPercentage(100);// 设置第一个表的宽度
			document.add(table);
						table.addCell(cell);
			document.add(table);
			document.add(new Paragraph("\n\n"));

			// 第二个table开始
			float[] widths2 = { 0.3f };
			PdfPTable table2 = new PdfPTable(widths2);

			PdfPCell cell2 = new PdfPCell(new Paragraph("SWOT Analysis\n\n\n"
					+ "Strength:\n\n\n\n" + "IELTSWeakness:\n\n\n"
					+ "Opportunity:\n\n\n" + "Threat:\n\n\n"
					+ "Memo of the meeting:\n\n\n"));

			cell2.setFixedHeight(588);// 设置第二个表格的高度

			table2.setWidthPercentage(58);// 设置第二个表的宽度
			document.add(table2);

						document.add(table2);

						table2.addCell(cell2);
			document.add(table2);

			// /////////////////////////////////////////////////////
			// 第三个测试开始

			float[] widths3 = { 1f };
			PdfPTable table3 = new PdfPTable(widths3);

						PdfPCell cell3 = new PdfPCell(new Paragraph("SWOT Analysis\n\n\n"
					+ "Strength:\n\n\n\n" + "IELTSWeakness:\n\n\n"
					+ "Opportunity:\n\n\n" + "Threat:\n\n\n"
					+ "Memo of the meeting:\n\n\n"));

			cell3.setFixedHeight(80);// 设置第三个表格的高度

			table3.setWidthPercentage(39);// 设置第三个表的宽度

			
			table3.setHorizontalAlignment(Element.ALIGN_RIGHT); 			table3.addCell(cell3);
			document.add(table3);
			document.add(new Paragraph("\n\n"));
						float[] widths4 = { 0.5f, 2f, 2f };
			PdfPTable table4 = new PdfPTable(widths4);
			PdfPCell cell4 = new PdfPCell(new Paragraph("Bath"));

			table4.addCell("1");
			table4.addCell("Accounting an ");
			table4.addCell("City University");
			table4.addCell("2");
			table4.addCell("City University");
			table4.addCell("City University");
			table4.addCell("3");
			table4.addCell("2.2");
			table4.addCell("3.2");
			table4.addCell("4");
			table4.addCell("City University");
			table4.addCell("City University");

			table4.setHorizontalAlignment(Element.ALIGN_RIGHT); 
						table4.setWidths(widths4);
			document.add(table4);

			
			document.add(new Paragraph("\n\n"));
			// ////////////////////////////////////////////////////////

			/* 第2页 */
			PdfPTable tb1 = new PdfPTable(3);
			cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance!(1)\n\n"));

						cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			tb1.setWidthPercentage(100);
			tb1.addCell(cell);// 此cell占用3个table

			tb1.addCell("3.1\n\n");
			tb1.addCell("3.2\n\n");
			tb1.addCell("3.3\n\n");

						cell = new PdfPCell(new Paragraph(
					"profession describe (3) !!\n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			tb1.addCell(cell);
						document.add(tb1);
			document.add(new Paragraph("\n\n"));

			PdfPTable tb2 = new PdfPTable(3);
			cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance(2)\n\n"));

						cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			tb2.setWidthPercentage(100);
			tb2.addCell(cell);// 此cell占用3个table

			tb2.addCell("2.1\n\n");
			tb2.addCell("2.2\n\n");
			tb2.addCell("2.3\n\n");

						cell = new PdfPCell(new Paragraph(
					"profession describe (2) \n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			tb2.addCell(cell);
						document.add(tb2);
			document.add(new Paragraph("\n\n"));

			PdfPTable tb3 = new PdfPTable(3);
			cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance!(3)\n\n"));

						cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			tb3.setWidthPercentage(100);
			tb3.addCell(cell);// 此cell占用3个table

			tb3.addCell("3.1\n\n");
			tb3.addCell("3.2\n\n");
			tb3.addCell("3.3\n\n");

						cell = new PdfPCell(new Paragraph(
					"profession describe (3) !!\n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			tb3.addCell(cell);
						document.add(tb3);
			document.add(new Paragraph("\n\n"));

			
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}

		System.out.println("iTextTablePage1.pdf to c:\\");
		
		document.close();

	}
}


第二页

package com.xishui.action;

import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Cell;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfPCell;
import com.lowagie.text.pdf.PdfPTable;
import com.lowagie.text.pdf.PdfWriter;

public class iTextTablePage2 {

	public static void main(String[] args) {

		Document document = new Document();
		try {
						PdfWriter.getInstance(
								new FileOutputStream("c:\\iTextTable_Page_2.pdf"));
			
			document.open();
						document.add(new Paragraph("Potential programs for you")); // 小标题

			PdfPTable table = new PdfPTable(3);
						PdfPCell cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance(1)\n\n"));

			cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			table.addCell(cell);// 此cell占用3个table

			table.addCell("1.1\n\n");
			table.addCell("2.1\n\n");
			table.addCell("3.1\n\n");

						cell = new PdfPCell(new Paragraph(
					" profession describe (1) !!\n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			table.addCell(cell);
						document.add(table);
			document.add(new Paragraph("\n\n"));

			PdfPTable tb2 = new PdfPTable(3);
			cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance(2)\n\n"));

						cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			tb2.addCell(cell);// 此cell占用3个table

			tb2.addCell("2.1\n\n");
			tb2.addCell("2.2\n\n");
			tb2.addCell("2.3\n\n");

						cell = new PdfPCell(new Paragraph(
					"profession describe (2) \n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			tb2.addCell(cell);
						document.add(tb2);
			document.add(new Paragraph("\n\n"));

			PdfPTable tb3 = new PdfPTable(3);
			cell = new PdfPCell(
					new Paragraph(
							"CASS Business School, City University - Quantitative Finance!(3)\n\n"));

						cell.setColspan(3); // 设为几,就是几列,另加之前设置的表格数量
			tb3.addCell(cell);// 此cell占用3个table

			tb3.addCell("3.1\n\n");
			tb3.addCell("3.2\n\n");
			tb3.addCell("3.3\n\n");

						cell = new PdfPCell(new Paragraph(
					"profession describe (3) !!\n\n\n\n\n\n\n\n\n\n\n"));
			cell.setColspan(3);
			tb3.addCell(cell);
						document.add(tb3);
			document.add(new Paragraph("\n\n"));

			
		} catch (DocumentException de) {
			System.err.println(de.getMessage());
		} catch (IOException ioe) {
			System.err.println(ioe.getMessage());
		}

		System.out.println("iTextTable_Page_2.pdf to c:\\");
		// step 5: we close the document

		document.close();

	}
}




 

 

第三种 用 Table 创建表格:

 

try {
			Document document = new Document(PageSize.A4, 20, 20, 20, 20);
			PdfWriter writer = PdfWriter.getInstance(document,
					new FileOutputStream("c:\\Temp\\ITextTest.pdf"));
			document.open();

			BaseFont bfChinese;
			bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",
					false);
			Font fontChinese = new Font(bfChinese, 9, Font.BOLD, Color.black);
			Table t = new Table(12, 2);    //2行12列
			t.setBorderColor(new Color(220, 255, 100));
			int width[] = { 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, };
			t.setWidths(width);

			t.setWidth(100); // 占页面宽度 %
			t.setPadding(1);
			t.setSpacing(0);
			t.setBorderWidth(2);

			Cell c1 = new Cell("header1");
			t.addCell(c1);
			c1 = new Cell("Header2");
			t.addCell(c1);
			c1 = new Cell("Header3");
			t.addCell(c1);
			c1 = new Cell("Header4");
			t.addCell(c1);
			c1 = new Cell("Header5");
			t.addCell(c1);
			c1 = new Cell("Header6");
			t.addCell(c1);
			c1 = new Cell("Header7");
			t.addCell(c1);
			c1 = new Cell("Header8");
			t.addCell(c1);
			c1 = new Cell("Header9");
			t.addCell(c1);
			c1 = new Cell("Header10");
			t.addCell(c1);
			c1 = new Cell("Header11");
			t.addCell(c1);
			c1 = new Cell("Header12");
			t.addCell(c1);

			int k = 0;
			while (k < 3) {
				for (int q = 0; q < 12; q++) {
					Paragraph par = new Paragraph(k + "-" + q, fontChinese);
					c1 = new Cell(par);
					c1.setHorizontalAlignment(Element.ALIGN_CENTER);
					t.addCell(c1);
				}
				k++;
			}

			c1 = new Cell("1");
			t.addCell(c1);
			c1 = new Cell("2");
			t.addCell(c1);
			c1 = new Cell("3");
			t.addCell(c1);
			c1 = new Cell("4");
			c1.setColspan(4);
			c1.setRowspan(7);
			t.addCell(c1);
			c1 = new Cell("5");
			c1.setColspan(5);
			c1.setRowspan(4);
			t.addCell(c1);

			c1 = new Cell("6");
			t.addCell(c1);
			c1 = new Cell("7");
			t.addCell(c1);
			c1 = new Cell("8");
			t.addCell(c1);

			c1 = new Cell("9");
			t.addCell(c1);
			c1 = new Cell("10");
			t.addCell(c1);
			c1 = new Cell("11");
			t.addCell(c1);

			c1 = new Cell("12");
			t.addCell(c1);
			c1 = new Cell("13");
			t.addCell(c1);
			c1 = new Cell("14");
			t.addCell(c1);

			c1 = new Cell("15");
			t.addCell(c1);
			c1 = new Cell("16");
			t.addCell(c1);
			c1 = new Cell("17");
			t.addCell(c1);
			c1 = new Cell("18");
			t.addCell(c1);
			c1 = new Cell("19");
			t.addCell(c1);
			c1 = new Cell("20");
			t.addCell(c1);
			c1 = new Cell("21");
			t.addCell(c1);
			c1 = new Cell("22");
			t.addCell(c1);

			c1 = new Cell("23");
			t.addCell(c1);
			c1 = new Cell("24");
			t.addCell(c1);
			c1 = new Cell("25");
			t.addCell(c1);
			c1 = new Cell("26");
			c1.setColspan(5);
			c1.setRowspan(2);
			t.addCell(c1);

			c1 = new Cell("27");
			t.addCell(c1);
			c1 = new Cell("28");
			t.addCell(c1);
			c1 = new Cell("29");
			t.addCell(c1);

			document.add(t);
			document.close();
		} catch (Exception e2) {
			System.out.println(e2.getMessage());
		}
 

 

 

 

分享到:
评论

相关推荐

    java使用itext实现pdf文件下载

    Itext提供了一系列的API,可以方便地创建PDF文档的各个元素,如文本、图像、表格等。在项目中引入Itext依赖,通常使用Maven或Gradle进行管理,例如在Maven的pom.xml中添加如下依赖: ```xml &lt;groupId&gt;...

    itext 生成pdf 目录

    1. **创建PdfWriter对象**:首先,你需要创建一个`PdfWriter`实例,它将负责将PDF内容写入文件。这通常涉及到创建一个`Document`对象,并将其与`PdfWriter`关联起来。 ```java Document document = new Document...

    使用itext生成PDF文件

    2. **创建PDF文档**:使用iText生成PDF的第一步是创建一个PdfWriter实例,然后基于该实例创建一个Document对象。例如: ```java Document document = new Document(); PdfWriter.getInstance(document, new ...

    itext生成pdf文件-表格

    本文将深入探讨iText如何生成包含表格的PDF文件,同时结合提供的“itext教程_itext的使用方法_iava使用itext实现pdh的输出.doc”文档,为您详细解析这一过程。 首先,我们需要了解iText的基本用法。iText是用Java...

    iText操作Pdf简单整理

    1. **创建PDF文档**:使用`Document`类作为PDF文档的容器,通过`Document.open()`方法开启文档,然后使用`Paragraph`、`Chunk`等对象添加文本内容,最后调用`Document.close()`关闭文档。 2. **字体管理**:iText...

    使用itextpdf将PDF大文件拆分成若干份指定大小文件.zip

    本主题涉及的是如何使用Java和iTextPDF库来将一个大PDF文件拆分成多个指定大小的文件。首先,我们需要理解PDF文件的结构以及iTextPDF库的基本操作。 iTextPDF是一个强大的Java库,它提供了丰富的API来创建、修改和...

    iText创建pdf中文文档.doc.zip

    iText是一款广泛使用的Java库,专门...通过阅读“iText创建pdf中文文档.doc”提供的详细资源,你可以深入了解如何利用iText的特性和方法来创建自定义的PDF文档。学习和掌握iText,将使你在处理PDF文档时更加得心应手。

    使用ITEXT导出PDF、WORD,APACHE POI导出EXCEL报表文件

    以下是一个简单的示例,展示如何使用ITEXT创建PDF文件: ```java import com.itextpdf.text.Document; import com.itextpdf.text.Paragraph; import com.itextpdf.text.pdf.PdfWriter; import java.io....

    IText解析PDF文件

    无论是从头创建PDF文档,还是编辑现有的PDF文件,iText都提供了强大的支持。 #### 二、iText的基本构建块 ##### 2.1 基础构建块概述 在第二章中,作者介绍了iText的基本构建块。这些基础组件是创建PDF文档的核心...

    freemarker+itext生成PDF

    这篇博客 "freemarker+itext生成PDF" 可能详细介绍了如何结合这两者来生成PDF文件,这在报表生成、发票打印或任何需要静态化输出的场景中非常有用。 首先,让我们了解FreeMarker。FreeMarker是一个基于模板的语言,...

    iText简绍及操作PDF文件

    iText 是一款流行的 Java 和 .NET 平台上的 PDF 文档处理库,用于创建、编辑和操作 PDF 文件。本篇文章将介绍如何使用 iText 创建 PDF 文件,特别是关注如何解决中文显示问题。 首先,我们来看创建一个简单的 PDF ...

    itext7 pdf转图片

    - PDF文档的结构:PDF由多个对象组成,如页、字体、图像、注释等,这些对象在PDF文件中以XML式的语法存储。 - 转换PDF:除了基本的创建和编辑功能,iText 7还允许开发者将PDF文档转换为其他格式,例如HTML、XML或...

    itextpdf-5.5.13

    《iTextPDF 5.5.13:创建PDF文件的高效工具》 iTextPDF是一款功能强大的Java库,主要用于创建、编辑以及处理PDF文档。版本5.5.13是其历史版本之一,提供了丰富的API和功能,使得开发者能够方便地在Android平台上...

    Android使用iText生成pdf并读取pdf内容

    以下是一个简单的例子,展示如何创建一个包含标题和段落的PDF文件: ```java import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Paragraph; import ...

    itext打印pdf文件拆分list数据

    iText提供了一系列API,允许开发者创建PDF文档,添加文本、图像、表格等元素,以及进行更复杂的操作,如签署文档、添加链接和元数据。对于打印PDF文件,iText提供了一个`PdfWriter`类,它能创建一个与现有PDF文件...

    iText_pdf.rar_iText pdf_itext PDF类

    在实际开发中,使用iText创建PDF时,首先需要导入iText库,然后创建`Document`对象来表示PDF文档,接着使用`PdfWriter`将`Document`对象与输出流关联。通过`Paragraph`、`Font`、`Chunk`等类添加内容,可以控制文本...

    itext 给pdf文件签名

    在给PDF文件签名的过程中,IText提供了强大的功能,确保了文档的完整性和安全性。PDF签名不仅验证了文档的来源,还可以防止内容被篡改。在本篇中,我们将深入探讨如何使用IText为PDF文件添加数字签名。 首先,了解...

    java使用itextpdf、itext-asian对pdf文件加水印

    2. **创建PDF文档读写对象**:使用`PdfReader`读取源PDF文件,然后用`PdfStamper`创建一个可写对象,允许我们向PDF中添加新的内容。 ```java FileInputStream fis = new FileInputStream("源文件路径"); PdfReader ...

    iText PDF中文字体文件.rar

    3. **添加中文文本**:在创建PDF文档时,使用创建的字体对象添加中文文本。例如: ```java PdfContentByte canvas = writer.getDirectContent(); ColumnText.showTextAligned(canvas, Element.ALIGN_LEFT, new ...

    使用IText生成PDF和WORD文档

    以下是一个简单的示例,演示如何使用IText创建一个包含文本的PDF文档: ```java import com.itextpdf.text.Document; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Paragraph; import ...

Global site tag (gtag.js) - Google Analytics