itext 生成 PDF(二) 官网: 博文: 博文: iText是著名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库。通过iText不仅可以生成PDF或rtf的文档,而且可以将XML、Html文件转化为PDF文件。 项目要使用iText,必须引入jar包。才能使用,maven依赖如下: itextpdf 输出中文,还要引入下面包: itext-asian 设置pdf文件密码,还要引入下面包: bcprov-jdk15on iText常用类 :这是iText库中最常用的类,它代表了一个pdf实例。如果你需要从零开始生成一个PDF文件,你需要使用这个Document类。首先创建(new)该实例,然后打开(open)它,并添加(add)内容,最后关闭(close)该实例,即可生成一个pdf文件。 :表示一个缩进的文本段落,在段落中,你可以设置对齐方式,缩进,段落前后间隔等 :表示PDF的一个章节,他通过一个Paragraph类型的标题和整形章数创建 :这个类包含了所有规范好的字体,包括family of font,大小,样式和颜色,所有这些字体都被声明为静态常量 :表示一个列表; :表示一个锚,类似于HTML页面的链接。 :当这个PdfWriter被添加到PdfDocument后,所有添加到Document的内容将会写入到与文件或网络关联的输出流中。 :用于读取PDF文件; iText使用 创建一个简单的pdf文件,如下: ;;;;;;;publicclassTestPDFDemo1{publicstaticvoidmain(String[]args)throws FileNotFoundException,DocumentException{// 1.新建document对象Document document=newDocument();// 2.建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。// 创建 PdfWriter 对象 第一个参数是对文档对象的引用,第二个参数是文件的实际名称,在该名称中还会给出其输出路径。PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));// 3.打开文档();// 4.添加一个内容段落(newParagraph("Hello World!"));// 5.关闭文档();}} 打开文件 PDF中创建表格 publicstaticvoidmain(String[]args)throws DocumentException,FileNotFoundException{//创建文件Document document=newDocument();//建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//打开文件();//添加内容(newParagraph("HD content here"));// 3列的表.PdfPTable table=newPdfPTable(3);(100);// 宽度100%填充(10f);// 前间距(10f);// 后间距ListlistRow=();//设置列宽float[]columnWidths={1f,2f,3f};(columnWidths);//行1PdfPCell cells1[]=newPdfPCell[3];PdfPRow row1=newPdfPRow(cells1);//单元格cells1[0]=newPdfPCell(newParagraph("111"));//单元格内容cells1[0].setBorderColor();//边框验证cells1[0].setPaddingLeft(20);//左填充20cells1[0].setHorizontalAlignment();//水平居中cells1[0].setVerticalAlignment();//垂直居中cells1[1]=newPdfPCell(newParagraph("222"));cells1[2]=newPdfPCell(newParagraph("333"));//行2PdfPCell cells2[]=newPdfPCell[3];PdfPRow row2=newPdfPRow(cells2);cells2[0]=newPdfPCell(newParagraph("444"));//把第一行添加到集合(row1);(row2);//把表格添加到文件中(table);//关闭文档();//关闭书写器();} 打开图片 给PDF文件设置文件属性,例如: publicstaticvoidmain(String[]args)throws FileNotFoundException,DocumentException{//创建文件Document document=newDocument();//建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//打开文件();//添加内容(newParagraph("Some content here"));//设置属性//标题("this is a title");//作者("H__D");//主题("this is subject");//关键字("Keywords");//创建时间();//应用程序("");//关闭文档();//关闭书写器();} 打开文件 PDF中添加图片 publicstaticvoidmain(String[]args)throws DocumentException,IOException{//创建文件Document document=newDocument();//建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//打开文件();//添加内容(newParagraph("HD content here"));//图片1Image image1=("C:/Users/H__D/Desktop/");//设置图片位置的x轴和y周(100f,550f);//设置图片的宽度和高度(200,200);//将图片1添加到pdf文件中(image1);//图片2Image image2=(newURL(""));//将图片2添加到pdf文件中(image2);//关闭文档();//关闭书写器();} 打开图片 PDF中创建列表 publicstaticvoidmain(String[]args)throws DocumentException,FileNotFoundException{//创建文件Document document=newDocument();//建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//打开文件();//添加内容(newParagraph("HD content here"));//添加有序列表List orderedList=newList();(newListItem("Item one"));(newListItem("Item two"));(newListItem("Item three"));(orderedList);//关闭文档();//关闭书写器();} 打开文件 PDF中设置样式/格式化输出,输出中文内容,必须引入 publicstaticvoidmain(String[]args)throws DocumentException,IOException{//创建文件Document document=newDocument();//建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//打开文件();//中文字体,解决中文不能显示问题BaseFont bfChinese=("STSong-Light","UniGB-UCS2-H",);//蓝色字体Font blueFont=newFont(bfChinese);();//段落文本Paragraph paragraphBlue=newParagraph("paragraphOne blue front",blueFont);(paragraphBlue);//绿色字体Font greenFont=newFont(bfChinese);();//创建章节Paragraph chapterTitle=newParagraph("段落标题xxxx",greenFont);Chapter chapter1=newChapter(chapterTitle,1);(0);Paragraph sectionTitle=newParagraph("部分标题",greenFont);Section section1=(sectionTitle);Paragraph sectionContent=newParagraph("部分内容",blueFont);(sectionContent);//将章节添加到文章中(chapter1);//关闭文档();//关闭书写器();} 打开图片 ![ ] 给PDF文件设置密码,需要引入包: publicstaticvoidmain(String[]args)throws DocumentException,IOException{// 创建文件Document document=newDocument();// 建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));//用户密码String userPassword="123456";//拥有者密码String ownerPassword="hd";((),(),);// 打开文件();//添加内容(newParagraph("password !!!!"));// 关闭文档();// 关闭书写器();} 打开图片 给PDF文件设置权限 publicstaticvoidmain(String[]args)throws DocumentException,IOException{// 创建文件Document document=newDocument();// 建立一个书写器PdfWriter writer=(document,newFileOutputStream("C:/Users/H__D/Desktop/"));// 只读权限("".getBytes(),"".getBytes(),);// 打开文件();// 添加内容(newParagraph("password !!!!"));// 关闭文档();// 关闭书写器();} 读取/修改已有的PDF文件 publicstaticvoidmain(String[]args)throwsDocumentException,IOException{//读取pdf文件PdfReaderpdfReader=newPdfReader("C:/Users/H__D/Desktop/");//修改器PdfStamperpdfStamper=newPdfStamper(pdfReader,newFileOutputStream("C:/Users/H__D/Desktop/"));Imageimage=("C:/Users/H__D/Desktop/");(50,50);(0,700);for(inti=1;i<=();i++){PdfContentBytecontent=(i);(image);}();} itext 生成 PDF(二) 链接: