Java使用IText根据pdf模板创建pdf文件

2024-04-26 10:04
文章标签 java 模板 使用 创建 pdf itext

本文主要是介绍Java使用IText根据pdf模板创建pdf文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.导包

 <dependency><groupId>com.itextpdf</groupId><artifactId>itextpdf</artifactId><version>5.5.10</version></dependency><dependency><groupId>com.itextpdf</groupId><artifactId>itext-asian</artifactId><version>5.2.0</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.11.0</version>
</dependency>

2.绘制pdf模板
在这里插入图片描述
3.示例代码

/*** 读取pdf模板填充生成pdf文件并转为字节数组* @return*/
public byte[] createPdf() {//获取源数据(一般从数据库查询,此处通过构造数据简化处理)List<Plan> plans = this.getPlans();final int size = plans.size();//临时文件final String outputFilePath = "D:/" + System.currentTimeMillis() + ".pdf";OutputStream os = null;PdfStamper ps = null;PdfReader reader = null;PdfReader reader2 = null;Document document = null;ByteArrayOutputStream byteArrayOutputStream = null;PdfCopy pdfNew = null;try {//读入pdf表单reader = new PdfReader(this.getClass().getResourceAsStream("/template/test.pdf"));//根据表单生成一个新的pdfos = Files.newOutputStream(new File(outputFilePath).toPath());ps = new PdfStamper(reader, os);//获取pdf表AcroFields form = ps.getAcroFields();form.setField("contractNo", "HT2024042501");//合同号form.setField("paymentDate", "2022-12-01");//放款日期form.setField("expiredDate", "2023-12-01");//到期日期ps.setFormFlattening(true);List<AcroFields.FieldPosition> table = form.getFieldPositions("table");Rectangle rect = table.get(0).position;PdfPTable pTable = new PdfPTable(8);BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", false);Font fontZH = new Font(bfChinese, 10f, 0);pTable.getDefaultCell().setHorizontalAlignment(1);pTable.setWidthPercentage(100.0f);float totalWidth = rect.getRight() - rect.getLeft() - 1;//计算表格宽度float[] columnWidth = {(float) (totalWidth * 0.05), (float) (totalWidth * 0.15), (float) (totalWidth * 0.15), (float) (totalWidth * 0.15), (float) (totalWidth * 0.15), (float) (totalWidth * 0.13), (float) (totalWidth * 0.13), (float) (totalWidth * 0.09)};pTable.setTotalWidth(columnWidth);pTable.setLockedWidth(true);for (Plan plan : plans) {Integer periodNo = plan.getPeriodNo();int border = (periodNo % 12 == 0 || periodNo == size) ? Rectangle.BOTTOM : Rectangle.NO_BORDER;pTable.addCell(generateCell(String.valueOf(periodNo), border, fontZH));pTable.addCell(generateCell(plan.getMatchDate(), border, fontZH));pTable.addCell(generateCell(plan.getRepayOriginal(), border, fontZH));pTable.addCell(generateCell(plan.getPenalty(), border, fontZH));pTable.addCell(generateCell(plan.getRepayAmount(), border, fontZH));pTable.addCell(generateCell(plan.getRestOriginal(), border, fontZH));pTable.addCell(generateCell(plan.getRepayDate(), border, fontZH));pTable.addCell(generateCell(plan.getRepayStatus(), border, fontZH));}pTable.setKeepTogether(true);pTable.setSplitLate(false);pTable.setSplitRows(true);//计算需要分页的总页数int totalpage = size % 12 == 0 ? size / 12 : size / 12 + 1;if (totalpage == 1) {//获table页面PdfContentByte under = ps.getOverContent(1);//添加tablepTable.writeSelectedRows(0, -1, rect.getLeft(), rect.getTop(), under);} else {for (int i = 1; i <= totalpage; i++) {PdfContentByte under = ps.getOverContent(i);if (i == 1) {pTable.writeSelectedRows(0, 12, rect.getLeft(), rect.getTop(), under);} else {pTable.writeSelectedRows((i - 1) * 12, i * 12, rect.getLeft(), rect.getTop(), under);}}}ps.close();reader2 = new PdfReader(outputFilePath);document = new Document(reader2.getPageSizeWithRotation(1));byteArrayOutputStream = new ByteArrayOutputStream();pdfNew = new PdfCopy(document, byteArrayOutputStream);document.open();PdfImportedPage page;for (int i = 1; i <= totalpage; i++) {page = pdfNew.getImportedPage(reader2, i);pdfNew.addPage(page);}document.close();os.close();pdfNew.close();reader.close();reader2.close();FileUtils.delete(new File(outputFilePath));return byteArrayOutputStream.toByteArray();} catch (Exception e) {e.printStackTrace();} finally {try {if (ps != null) {ps.close();}if (reader != null) {reader.close();}if (os != null) {os.close();}if (document != null) {document.close();}if (pdfNew != null) {pdfNew.close();}if (reader2 != null) {reader2.close();}if (byteArrayOutputStream != null) {byteArrayOutputStream.close();}} catch (Exception e) {e.printStackTrace();}}return null;
}private List<Plan> getPlans() {List<Plan> plans = new ArrayList<Plan>();for(int i=1;i<=12;i++) {plans.add(new Plan(i,"2023-"+String.format("%02d", i)+"-01","999","-", "999","0","2023-"+String.format("%02d", i)+"-01", "已结清"));}return plans;
}private PdfPCell generateCell(String value, int border, Font fontZH) {PdfPCell cell = new PdfPCell(new Phrase(value, fontZH));cell.setBorder(border);cell.setHorizontalAlignment(Element.ALIGN_CENTER);return cell;}public static void main(String [] args) throws FileNotFoundException, IOException {//将字节流转为pdf文件放于D盘OutputStream fileOut = new FileOutputStream("D:/a.pdf");fileOut.write(new TestPdf().createPdf());}

4.执行结果
在这里插入图片描述
5.所用到jar包下载地址
itextpdf-5.5.10.jar

欢迎大家积极留言交流学习心得,点赞的人最美丽!

这篇关于Java使用IText根据pdf模板创建pdf文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/937285

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数