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

news/2024/11/25 3:07:40/

第一、前言
此前已在文章: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/news/1549705.html

相关文章

如何使用docker、docker挂载数据,以及让docker使用宿主机器的GPU环境 + docker重启小妙招

最近的工作和学习需要我使用docker&#xff0c;浅浅的学了一下&#xff0c;记录在这&#xff1a;下载docker镜像&#xff0c;用docker打包我的项目和环境&#xff0c;让docker使用宿主机器的GPU环境&#xff0c;将数据挂载在docker容器内&#xff0c;保存一个新的镜像等。最后加…

【大模型推理】vLLM 源码学习

强烈推荐 https://zhuanlan.zhihu.com/p/680153425 sequnceGroup 存储了相同的prompt对应的不同的sequence, 所以用字典存储 同一个Sequence可能占据多个逻辑Block&#xff0c; 所以在Sequence 中用列表存储 同一个block 要维护tokens_id 列表, 需要添加操作。 还需要判断blo…

白蚁自动化监测系统的装置和优势

一、背景 在当今社会&#xff0c;随着科技的飞速发展&#xff0c;智能化、自动化技术在各个领域的应用日益广泛&#xff0c;白蚁自动化监测系统作为一种高效、精准的白蚁防控手段&#xff0c;正逐步成为行业内的主流趋势&#xff0c;既是文物古建水利堤坝等预防性保护的要求&a…

哈希表(极速学习版)

哈希表的定义与实现 概述 哈希表是一种高效的数据结构&#xff0c;它提供了快速的数据插入、删除和查找操作。 通过使用哈希函数&#xff0c;哈希表将输入的键映射到一个指定位置&#xff08;索引&#xff09;以快速访问存储在该位置的值。 哈希表通常用于实现字典、集合、…

SpringCloud框架学习(第五部分:SpringCloud Alibaba入门和 nacos)

目录 十二、SpringCloud Alibaba入门简介 1. 基本介绍 2.作用 3.版本选型 十三、 SpringCloud Alibaba Nacos服务注册和配置中心 1.简介 2.各种注册中心比较 3.下载安装 4.Nacos Discovery服务注册中心 &#xff08;1&#xff09; 基于 Nacos 的服务提供者 &#xf…

Django项目 | 实现登录注册验证电子邮箱

在实现登录验证电子邮箱时&#xff0c;需要确保模型中包含电子邮箱字段 自定义用户模型登录验证电子邮箱实现 1. 模型&#xff08;Model&#xff09; 确保自定义用户模型中包含电子邮箱字段。例如&#xff1a; from django.contrib.auth.models import AbstractUser from d…

数字赋能,气象引领 | 气象景观数字化服务平台重塑京城旅游生态

在数字化转型的浪潮中&#xff0c;旅游行业正以前所未有的速度重塑自身&#xff0c;人民群众对于高品质、个性化旅游服务需求的日益增长&#xff0c;迎着新时代的挑战与机遇&#xff0c;为开展北京地区特色气象景观预报&#xff0c;打造“生态气象旅游”新业态&#xff0c;助推…

Linux进阶:环境变量

环境变量是一组信息记录&#xff0c;类型是KeyValue型&#xff08;名值&#xff09;&#xff0c;用于操作系统运行的时候记录关键信息. env命令&#xff1a;查看系统全部的环境变量 语法&#xff1a;env $符号&#xff1a;取出指定的环境变量的值 语法&#xff1a;$变量名 …