Java利用itext实现导出PDF文件

所需要的jar包:com.lowagie.text_2.1.7.v201004222200.jar

jar包下载地址:http://cn.jarfire.org/com.lowagie.html

一、主要步骤

1.新建document对象

第一个参数是页面大小。接下来的参数分别是左、右、上和下页边距。

Document document =new Document(PageSize.A4,50,50,30,20);

2.建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以

将文档写入到磁盘中。

创建 PdfWriter 对象 第一个参数是对文档对象的引用,第二个参数是文件的实际名称,在该名称中还会给出其输出路径。

PdfWriter writer =PdfWriter.getInstance(document,new FileOutputStream(filePath));

3.打开文档

写入数据之前要打开文档

  document.open();

4.向文档中添加内容

document.add();

5.关闭文档

document.close();

二、字体

新建一个字体,iText的方法

BaseFont bfChinese;

bfChinese=BaseFont.createFont("STSongStd-Light","UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);//jar包  bfChinese=BaseFont.createFont("C:/Windows/Fonts/msyh.ttf",BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED); //系统字体

STSongStd-Light 是字体,在jar 中以property为后缀

UniGB-UCS2-H   是编码,在jar 中以cmap为后缀

H 代表文字版式是横版,相应的 V 代表竖版

字体设置

参数一:新建好的字体;参数二:字体大小,参数三:字体样式,多个样式用“|”分隔

Font topfont =new Font(bfChinese,14,Font.BOLD);

Font textfont =new Font(bfChinese,10,,Font.BOLD|Font.UNDERLINE);

三、添加文本的对象:块、短句和段落

Chunk:块(Chunk)是能被添加到文档的文本的最小单位。

Phrase:短句(Phrase)是一系列以特定间距(两行之间的距离)作为参数的块。

Paragraph :段落是一系列块和(或)短句。同短句一样,段落有确定的间距。用户还可以指定缩排;在边和(或)右边保留一定空白,段落可以左对齐、右对齐和居中对齐。添加到文档中的每一个段落将自动另起一行。

四、步骤2书写器创建之后,步骤3文档打开之前

以下项只可在文档关闭状态执行 ,包括水印、页眉、页脚

水印

Watermark内部类,需要继承 PdfPageEventHelper

writer.setPageEvent(new PdfWidget().new Watermark());

页眉

Phrase phrase=new Phrase(new Chunk("pdf页眉   ",topfont));

 phrase.add(new Chunk("页眉",textfont));

HeaderFooter header =new HeaderFooter(phrase,false);//false不显示页码。

header.setBorder(Rectangle.BOTTOM);//设置是否有边框,边框在下

document.setHeader(header);//写进文档

页脚

HeaderFooter footer =new HeaderFooter(new Phrase("--"),new Phrase("--"));

footer.setAlignment(1);

footer.setBorder(Rectangle.NO_BORDER);//Rectangle.NO_BORDER没有边框

document.setFooter(footer);

红色下划线部分,自动默认页码写在两个短句中间

五、设置文档属性  (与文档是否打开没有关联)

document.addTitle("Title@sample");// 标题

document.addAuthor("Author@nicaisheng");// 作者

document.addSubject("Subject@iText sample");// 主题

document.addKeywords("Keywords@iText");// 关键字

document.addCreator("Creator@iText");// 创建者

六、文档内容

段落Paragraph

Paragraph pt=new Paragraph(name,headfont);//设置字体样式pt.setAlignment(1);//设置文字居中 0靠左   1,居中     2,靠右

pt.setIndentationLeft(12);// 左缩进

pt.setIndentationRight(12);// 右缩进

pt.setFirstLineIndent(24);// 首行缩进

pt.setLeading(20f);// 行间距

pt.setSpacingBefore(5f);// 设置上空白

pt.setSpacingAfter(10f);// 设置段落下空白

document.add(pt);

表格table

Table table =new Table(3);//括号参数表示列

int width[] = {10,45,45};//设置每列宽度比例

table.setWidths(width);

table.setWidth(95);//占页面宽度比例

table.setAlignment(Element.ALIGN_CENTER);//居中

table.setAutoFillEmptyCells(true);//自动填满

table.setBorderWidth((float)0.1);//表格边框线条宽度

table.setPadding(1);//边距:单元格的边线与单元格内容的边距

table.setSpacing(0);//间距:单元格与单元格之间的距离

  table.addCell(new Paragraph("name"),textfont));//添加单元格内容

  table.endHeaders();//每页都会显示表头

单元格内容样式cell

  Cell cell=new Cell(new Paragraph("序号",keyfont));

  cell.setHorizontalAlignment(Element.ALIGN_CENTER);//水平居中

cell.setVerticalAlignment(Element.ALIGN_MIDDLE); //垂直居中

table.addCell(cell);

表格嵌套 

最外层表格

PdfPTable table =new PdfPTable(3);

table.setTotalWidth(300);

table.setLockedWidth(true);

PdfPCell cell;

cell =new PdfPCell(new Phrase("Table 5"));

cell.setColspan(3);

cell.setBorderWidth(0);//设置表格的边框宽度为0

table.addCell(cell);

嵌套表格

PdfPTable celltable =new PdfPTable(2);

cell =new PdfPCell(celltable);

cell.setRowspan(2);

cell.setBorderWidth(1);//设置表格的边框宽度为1

cell.setPadding(10);//设置表格与上一个表格的填充为10

table.addCell(cell);

直线

Paragraph p1 =new Paragraph();

p1.add(new Chunk(new LineSeparator()));

doc.add(p1);

  点线

Paragraph p2 =new Paragraph();

p2.add(new Chunk(new DottedLineSeparator()));

超链接

Anchor anchor =new Anchor("this is anchor");

定位

点击后,跳到topline的位置

Anchor gotop =new Anchor("go top");

gotop.setReference("#us");

添加图片

Image image =Image.getInstance(imgPath);

image.setAlignment(Image.ALIGN_CENTER);

image.scalePercent(40);//依照比例缩放

最新文章

  1. Oracle 数据库重放(Database Replay)功能演示
  2. 【C#】第3章补充(二)如何将图形作为对象
  3. [转]ORACLE 动态执行SQL语句
  4. IIS------无法打开登录所请求的数据库 "company"。登录失败。 用户 'IIS APPPOOL\AppPool 4.0' 登录失败。
  5. .NET日常总结
  6. nopcommerce里面的@Html.Widget("home_page_top") 是什么?
  7. Yii2-Redis使用小记 - Cache
  8. tomcat dbcp 基于jndi当配置java.sql.SQLException: Already closed
  9. 关于mac地址的一点感想
  10. 虚拟机修改静态ip
  11. [SCOI2009]围豆豆
  12. kernel事件通知userspace
  13. [Educational Round 3][Codeforces 609F. Frogs and mosquitoes]
  14. Python作业第一课
  15. div+css布局记扎
  16. 简单 babel plugin 开发-使用lerna 工具
  17. [转帖]CentOS下iRedMail安装配置
  18. C#中简单的文件操作实例
  19. Django 项目中设置缓存
  20. [Python]Threading.Thread之Daemon线程

热门文章

  1. 0003 - 基于xml的Spring Bean 的创建过程
  2. log4j.properties详解
  3. NodeJS学习之win10安装与sublime配置
  4. 第24课 可变参数模板(5)_DllHelper和lambda链式调用
  5. 分享下自己写的一个微信小程序请求远程数据加载到页面的代码
  6. 《算法导论》——重复元素的随机化快排Optimization For RandomizedQuickSort
  7. 32. linux下oracle数据库定时备份
  8. 渲染函数render和函数式组件
  9. viewDidLoad, viewWillDisappear, viewWillAppear等区别及各自的加载顺序
  10. ABAP-表中数据的横向累加