当前位置: 首页 > article >正文

SpringBoot 基于iText 根据PDF模板动态生成文件

SpringBoot 基于iText 根据PDF模板动态生成文件, 需要使用 adobe acrobat pro DC这个工具来自定义模板
支持根据PDF模板生成单页或多页PDF文件

adobe acrobat pro DC 自定义模板

下载地址

链接:https://pan.baidu.com/s/1Vn3bIQ5_D17sEZnkF2t7gg?pwd=n6o1 
提取码:n6o1

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

添加依赖

 <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itextpdf</artifactId>
            <version>5.4.2</version>
        </dependency>

代码集成


import cn.hutool.core.io.resource.ClassPathResource;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.*;
import lombok.extern.slf4j.Slf4j;

import java.io.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @author wang
 */
@Slf4j
public class PdfUtil {

    private PdfUtil() {

    }

    /**
     * generatePdf
     * @param params    params
     * @param outputPath    outputPath
     * @return  String
     */
    public static String generatePdf(Map<String, String> params, String outputPath) {
        ClassPathResource resource = new ClassPathResource("templates/test_certificate_temp.pdf");
        InputStream inputStream = resource.getStream();
        ByteArrayOutputStream bos = null;
        PdfReader reader = null;
        FileOutputStream fos = null;
        try {
            reader = new PdfReader(inputStream);
            bos = new ByteArrayOutputStream();
            writePdf(params, bos, reader);
            fos = new FileOutputStream(outputPath);
            bos.writeTo(fos);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        } finally {
            try {
                assert bos != null;
                bos.close();
                reader.close();
                assert fos != null;
                fos.close();
            } catch (IOException e) {
                log.error(e.getMessage(), e);
            }
        }
        return outputPath;
    }

    /**
     * generateMultiPagePdf
     *
     * @param paramsList paramsList
     * @param outputPath outputPath
     * @return String
     */
    public static String generateMultiPagePdf(List<Map<String, String>> paramsList, String outputPath) {
        FileOutputStream fos = null;
        PdfCopy copy = null;
        Document document = null;

        try {
            ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
            InputStream inputStream = classLoader.getResourceAsStream("templates/test_certificate_temp.pdf");

            // 将模板读取到字节数组中
            assert inputStream != null;
            byte[] templateBytes = inputStream.readAllBytes();
            inputStream.close();

            fos = new FileOutputStream(outputPath);
            document = new Document();
            copy = new PdfCopy(document, fos);
            document.open();

            for (Map<String, String> params : paramsList) {
                ByteArrayOutputStream bos = new ByteArrayOutputStream();
                InputStream templateStream = new ByteArrayInputStream(templateBytes);
                PdfReader reader = new PdfReader(templateStream);
                writePdf(params, bos, reader);
                reader.close();
                templateStream.close();

                PdfReader pageReader = new PdfReader(new ByteArrayInputStream(bos.toByteArray()));
                copy.addPage(copy.getImportedPage(pageReader, 1));
                pageReader.close();
            }

        } catch (Exception e) {
            e.printStackTrace();
            return null;
        } finally {
            try {
                if (document != null) {
                    document.close();
                }
                if (copy != null) {
                    copy.close();
                }
                if (fos != null) {
                    fos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return outputPath;
    }

    private static void writePdf(Map<String, String> params, ByteArrayOutputStream bos, PdfReader reader) throws DocumentException, IOException {
        PdfStamper pdfStamper = new PdfStamper(reader, bos);
        AcroFields acroFields = pdfStamper.getAcroFields();
        BaseFont font = BaseFont.createFont();
        for (Map.Entry<String, String> param : params.entrySet()) {
            acroFields.setFieldProperty(param.getKey(), "textfont", font, null);
            acroFields.setField(param.getKey(), param.getValue());
        }
        pdfStamper.setFormFlattening(true);
        pdfStamper.close();
    }

    public static void main(String[] args) throws IOException {
        List<Map<String, String>> paramsList = new ArrayList<>();
        Map<String, String> params = new HashMap<>(16);
        params.put("hullId", "hullId_001");
        params.put("boatYear", "boatYear_001");
        params.put("boatBrand", "boatBrand_001");
        params.put("boatModel", "boatModel_001");
        paramsList.add(params);

        params = new HashMap<>(16);
        params.put("hullId", "hullId_002");
        params.put("boatYear", "boatYear_002");
        params.put("boatBrand", "boatBrand_002");
        params.put("boatModel", "boatModel_002");
        paramsList.add(params);

        String outputPath = "D:\\opt\\file_encode_zip\\target\\test_Certificate_8-20-24_target.pdf";
        String path = generateMultiPagePdf(paramsList, outputPath);
//        String path = generatePdf(params, outputPath);
        System.out.println(path);

    }
}


http://www.kler.cn/a/291240.html

相关文章:

  • SpringBoot之核心配置
  • ubuntu22.04 的录屏软件有哪些?
  • Agent | Dify中的两种可选模式
  • 江科大STM32入门——IIC通信笔记总结
  • 闲谭SpringBoot--ShardingSphere分库分表探究
  • 【VUE 指令学习笔记】
  • C#笔记6 网络编程基础,解释端口套接字,代码实例分析DNS,IPAddress等类
  • MySQL-进阶篇-锁(全局锁、表级锁、行级锁)
  • Fabric.js全面介绍:强大的交互式图形编辑框架
  • 优化采样参数提升大语言模型响应质量:深入分析温度、top_p、top_k和min_p的随机解码策略
  • 【C++ Qt day6】
  • Codeforces Round 971 (Div. 4) ABCD题详细题解(C++,Python)
  • Mac 安装Hadoop教程(HomeBrew安装)
  • 关于HTTP通讯流程知识点补充—常见状态码及常见请求方式
  • Hive服务部署及Datagrip工具使用
  • ElasticSearch-ELK
  • Linux中的时间
  • Webview Android性能优化
  • 赛题解读!文心智能体大赛招募中
  • SQL进阶技巧:经典问题题-换座位
  • LeetCode376 摆动序列
  • Spring中使用ResponseStatusExceptionResolver处理HTTP异常响应码
  • 基于Tomcat的JavaWeb(ASP)项目构建(图解)
  • 【AIGC】MimicMotion:姿态引导的高质量人体运动视频生成技术
  • C8T6超绝模块--LED
  • PCL 移动立方体三维重建——RBF算法【2024最新版】