IText创建加盖公章的pdf文件并生成压缩文件

embedded/2024/11/27 3:40:25/

第一、前言
此前已在文章:Java使用IText根据pdf模板创建pdf文件介绍了Itex的基本使用技巧,本篇以一个案例为基础,主要介绍IText根据pdf模板填充生成pdf文件,并生成压缩文件。

第二、案例
以下面pdf模板为例,生成一个pdf文件,并将其压缩成zip文件。
在这里插入图片描述
在这里插入图片描述
第三、代码实现
1、将pdf模板机公章图片放到resource目录;
在这里插入图片描述
2、为提高效率,在系统启动后将模板加载到redis缓存中,代码如下;

java">import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.Objects;
import javax.annotation.PostConstruct;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPoolAbstract;
@Component
public class InitConfig {private static final Logger logger = LoggerFactory.getLogger(InitConfig.class);private final JedisPoolAbstract jedisPool;@Autowiredpublic InitConfig(JedisPoolAbstract jedisPool) {super();this.jedisPool = jedisPool;}@PostConstructpublic void init() {try {Jedis jedis = jedisPool.getResource();final byte[] key="data".getBytes();if (jedis.exists(key)) {jedis.del(key);}InputStream is = this.getClass().getResourceAsStream("/template/data.pdf");jedis.set(key, streamToByteArray(is));final byte[] gongzhangKey="gongzhang".getBytes();if (jedis.exists(gongzhangKey)) {jedis.del(gongzhangKey);}is = this.getClass().getResourceAsStream("/image/gongzhang.png");jedis.set(gongzhangKey, streamToByteArray(is));} catch (Exception e) {logger.error("加载模板异常", e);}}public static byte[] streamToByteArray(InputStream is) throws Exception {ByteArrayOutputStream bos = null;try {bos = new ByteArrayOutputStream();byte[] b = new byte[1024];int len;while ((len = is.read(b)) != -1) {bos.write(b, 0, len);}return bos.toByteArray();} catch (Exception e) {logger.error("初始化模板", e);throw e;} finally {if (Objects.nonNull(bos)) {bos.close();}}}
}

3、操作文件工具类;

java">import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Map;
import java.util.Objects;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import com.itextpdf.text.Image;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.AcroFields;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;
import com.itextpdf.text.pdf.PdfWriter;public final class CommonFileUtil {private final static org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(CommonFileUtil.class);/*** 根据模板生成文件* @param paramMap* @param deskFile* @param template* @param gongZhang* @throws Exception*/public static void create(Map<String, Object> paramMap, File deskFile, final byte[] template, final byte[] gongZhang) throws Exception {PdfReader reader = null;PdfStamper stamp = null;try {reader = new PdfReader(template);stamp = new PdfStamper(reader, new FileOutputStream(deskFile));stamp.setEncryption(null, "lsy2024".getBytes(), PdfWriter.ALLOW_PRINTING, true);//取出报表模板中的所有字段AcroFields form = stamp.getAcroFields();//设置宋体BaseFont song = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);//设置参数for (Map.Entry<String, Object> entry : paramMap.entrySet()) {String key = entry.getKey();form.setFieldProperty(key, "textfont", song, null);form.setField(key, entry.getValue().toString());}//插入公章CommonFileUtil.insertImage(form, stamp, "gongzhang", gongZhang);//保存修改stamp.setFormFlattening(true);} catch (Throwable e) {logger.error("deskFile:{};文件生成失败!", deskFile, e);throw e;} finally {if (Objects.nonNull(stamp)) {stamp.close();}if (Objects.nonNull(reader)) {reader.close();}}}/*** pdf模板插入图片* @param form* @param stamper* @param filedName* @param gongZhang* @throws Exception*/public static void insertImage(AcroFields form, PdfStamper stamper, String filedName, final byte[] gongZhang) throws Exception {final Rectangle signRect = form.getFieldPositions(filedName).get(0).position;float x = signRect.getLeft();float y = signRect.getBottom();Image image = Image.getInstance(gongZhang);// 获取操作的页面PdfContentByte under = stamper.getOverContent(form.getFieldPositions(filedName).get(0).page);// 根据域的大小缩放图片image.scaleToFit(signRect.getWidth(), signRect.getHeight());// 添加图片image.setAbsolutePosition(x, y);under.addImage(image);}/*** 文件压缩* @param sourcePath* @param zipFilePath* @throws Exception*/public static void encryptNoPassword(String sourcePath, String zipFilePath) throws Exception {final long start = System.currentTimeMillis();byte[] buf = new byte[1024];File zipFile = new File(zipFilePath);//zip文件不存在,则创建文件,用于压缩ZipOutputStream zos = null;try {if (!zipFile.exists()) {zipFile.createNewFile();}zos = new ZipOutputStream(new FileOutputStream(zipFile));File file = new File(sourcePath);for (File sourceFile : file.listFiles()) {if (sourceFile == null || !sourceFile.exists()) {continue;}try (FileInputStream fis = new FileInputStream(sourceFile)) {//直接放到压缩包的根目录zos.putNextEntry(new ZipEntry(sourceFile.getName()));int len;while ((len = fis.read(buf)) > 0) {zos.write(buf, 0, len);}zos.closeEntry();}}} catch (Throwable e) {logger.error("sourcePath:{};zipFilePath:{};压缩文件失败!", sourcePath, zipFilePath, e);throw e;} finally {if (zos != null) {zos.close();}}logger.info("sourcePath:{};zipFilePath:{};压缩文件结束!{}", sourcePath, zipFilePath, System.currentTimeMillis() - start);}/*** 清理文件* @param path*/public static void clean(String path) {File rootPath = new File(path);if (rootPath.exists()) {if (rootPath.isDirectory()) {for (File file : rootPath.listFiles()) {clean(file.getPath());}}if (rootPath.isFile() || rootPath.listFiles().length == 0) {rootPath.delete();}}}
}

4、编写一个测试方法;

java">    public void print() {try {final String name = "张三";final String rootPath = "D:/temp/";File rootFile = new File(rootPath);if (!rootFile.exists()) {rootFile.mkdir();}File destFile = new File(rootPath + name + ".pdf");Map<String, Object> paramMap = new HashMap<String, Object>();paramMap.put("name", name);paramMap.put("birthDate", "2000-01-01");paramMap.put("currentDate", "2024  年  11  月  22  日");CommonFileUtil.create(paramMap, destFile, this.jedisPool.getResource().get("data".getBytes()), this.jedisPool.getResource().get("gongzhang".getBytes()));CommonFileUtil.encryptNoPassword(rootPath, "D:/data.zip");} catch (Exception e) {logger.error("==" + e);}}

5、调用并执行测试方法,将会在D盘创建压缩文件;
在这里插入图片描述
6、解压后如下;
在这里插入图片描述

欢迎大家积极留言交流学习心得!


http://www.ppmy.cn/embedded/140808.html

相关文章

《Spring Cloud 微服务》

一、引言 在现代软件开发中&#xff0c;微服务架构已成为主流趋势。Spring Cloud 作为构建微服务架构的强大工具集&#xff0c;提供了一系列组件和解决方案&#xff0c;帮助开发者轻松构建、部署和管理分布式系统。本文将深入介绍 Spring Cloud 的核心概念、主要组件、工作原理…

裸金属服务器能够帮助企业解决哪些问题?

随着网络科技的快速发展&#xff0c;企业业务也在不断的进行扩张和复杂化&#xff0c;传统的服务已经无法满足企业对于高性能和高稳定性的需求&#xff0c;而裸金属服务器则能够帮助企业来解决这一问题&#xff0c;下面我们就来具体看一下吧&#xff01; 裸金属服务器能够允许应…

php操作redis

php操作redis 一、连接redis //实例化redis$redis new Redis();//连接$redis->connect(127.0.0.1,6379);//检测是否连接成功echo "server is running:".$redis->ping();二、操作字符串 //设置一个字符串的值$redis->set(cat,1111);//获取一个字符串的值…

DRNN 神经网络的Jacobian 信息辨识

DRNN 神经网络的 Jacobian 信息辨识 1. 基本原理 Jacobian 矩阵用于描述多输入多输出系统中输入和输出之间的偏导关系&#xff0c;其形式为&#xff1a; 对于 DRNN&#xff08;Dynamic Recurrent Neural Network&#xff09;&#xff0c;其动态特性使得 y(t)\mathbf{y}(t)y(t…

前向概率与隐马尔可夫模型的解码问题

前向概率与隐马尔可夫模型的解码问题 在机器学习和信号处理领域&#xff0c;隐马尔可夫模型&#xff08;HMM&#xff09;是一种广泛应用于时间序列数据的统计模型。它不仅可以用于序列的生成&#xff0c;还可以用于序列的解码。本文将介绍前向概率和隐马尔可夫模型的解码问题&…

sklearn中常用数据集简介

scikit-learn库中提供了包括分类、回归、聚类、降维等多种机器学习任务所需的常用数据集&#xff0c;方便进行实验和研究&#xff0c;它们主要被封装在sklearn.datasets中&#xff0c;本文对其中一些常用的数据集进行简单的介绍。 1.Iris&#xff08;鸢尾花&#xff09;数据集…

MySql.2

sql查询语句执行过程 SQL 查询语句的执行过程是一个复杂的过程&#xff0c;涉及多个步骤。以下是典型的关系数据库管理系统 (RDBMS) 中 SQL 查询语句的执行过程概述&#xff1a; 1. ‌客户端发送查询‌ 用户通过 SQL 客户端或应用程序发送 SQL 查询语句给数据库服务器。 2. ‌…

【ArcGISPro】根据yaml构建原始Pro的conda环境

使用场景 我们不小心把原始arcgispro-py3的conda环境破坏了,我们就可以使用以下方法进行修复 查找文件 在arcgis目录下找到yaml文件 如果没找到请复制以下内容到新的yaml文件 channels: - esri - defaults dependencies: - anyio=4.2.0=py311haa95532_0 - appdirs=1.4.4=p…