版本:免费版大小:1.5M
类别:编程辅助系统:WinXP, Win7, Win8, Win10
立即下载itextpdf-5.1.2.jar是java操作PDF比用的jar包,该版本增加了函数用来完整的删除可选内容层(OCG),该版本主要还是维护版本,修复了一些邮件列表中报告的bug。欢迎有需要的用户前来it猫扑下载!
iText是一个非常着名的能够快速产生PDF文件的Java类库。支持文本,表格,图形的操作,可以方便的跟 Servlet 进行结合。
产品中要求有将表单内容、流转意见等内容放入PDF的功能。由于表单的内容不固定,那么就可以利用iText来采用PDF模板填充的方式。
填充PDF模板源码
* @throws IOException
* @throws DocumentException
*/
public static void fillTemplatePDF(Session session,lotus.domino.Document doc,java.io.InputStream isData,String gwType)
throws IOException, DocumentException, Exception {
PdfReader reader = new PdfReader(isData);
PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(String
.format(null, TMP_RESULT_MAIN, null)));
fill(session,doc, stamper.getAcroFields(),gwType);
stamper.setFormFlattening(true);
stamper.close();
}
查看全部