Java将获取的参数,图片以及pdf文件放入到word文档指定位置

首先引入的依赖

<!-- poi库 -->  <dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>4.1.2</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>4.1.2</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml-schemas</artifactId><version>4.1.2</version></dependency>
<!-- Apache PDFBox库(用于处理PDF文件) --><dependency><groupId>org.apache.pdfbox</groupId><artifactId>pdfbox</artifactId><version>2.0.27</version></dependency><dependency><groupId>com.deepoove</groupId><artifactId>poi-tl</artifactId><version>1.9.0</version></dependency>

接下面的是template.docx文档,参数是以{{paramName}}格式的,为什么要以这种格式,是因为下面的方法,在替换参数的时候需要

XWPFTemplate template = XWPFTemplate.compile( "C:\\Users\\Administrator\\Desktop\\template.docx").render(jsonObject);

但是从数据库获取的参数跟模板中的参数一一对应上即可,格式如下(我是json形式展示的):

{
    "countQuota": "1",
    "noEmission": "1",
    "greenConsume": "1",
    "pollutCharge": "1",
    "emissionPermit": "C:\\Users\\Administrator\\Desktop\\",
    "capitalOutlay": "1",
    "carbonTarget": "1",
    "zeroEmissionPower": "",
    "kgce": "",
    "productStandard": "",
    "totalConsume": "",
    "carbonEmission": "",
    "consumePer": "",
    "fileNames": "1.png,2.jpg,3.pdf",
    "directEmission": "",
    "indirectEmission": "1",
    "partiEmission": "1"
}

template.docx文档

大体上长这样

 这里主要给图片中4.15排污许可证那里插入文件

具体代码如下:

package com.example.threaddemo.test;import com.alibaba.excel.util.StringUtils;
import com.alibaba.fastjson.JSONObject;
import com.deepoove.poi.XWPFTemplate;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.rendering.PDFRenderer;
import org.apache.poi.util.IOUtils;
import org.apache.poi.util.Units;
import org.apache.poi.xwpf.usermodel.*;import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.*;
import java.util.List;
import java.util.Map;public class WordTest3 {public static void main(String[] args) throws Exception {String str = "{\n" +"\t\"countQuota\": \"1\",\n" +"\t\"noEmission\": \"1\",\n" +"\t\"greenConsume\": \"1\",\n" +"\t\"pollutCharge\": \"1\",\n" +"\t\"emissionPermit\": \"C:\\\\Users\\\\Administrator\\\\Desktop\\\\\",\n" +"\t\"capitalOutlay\": \"1\",\n" +"\t\"carbonTarget\": \"1\",\n" +"\t\"zeroEmissionPower\": \"\",\n" +"\t\"kgce\": \"\",\n" +"\t\"productStandard\": \"\",\n" +"\t\"totalConsume\": \"\",\n" +"\t\"carbonEmission\": \"\",\n" +"\t\"consumePer\": \"\",\n" +"\t\"fileNames\": \"1.png,2.jpg,滴滴电子发票.pdf\",\n" +"\t\"directEmission\": \"\",\n" +"\t\"indirectEmission\": \"1\",\n" +"\t\"partiEmission\": \"1\"\n" +"}";//str = str.replace("\n","");//str.replace("}","\"}");//str = str.replaceAll("\\\\667A", "667A");System.out.println("str = " + str);//Map<String, String> jsonObject = JSONObject.parseObject(str, Map.class);JSONObject jsonObject = JSONObject.parseObject(str);//.render(jsonObject) json,map或者实体类都是可以的,只要参数能对上就可以了XWPFTemplate template = XWPFTemplate.compile( "C:\\Users\\Administrator\\Desktop\\generate-template.docx").render(jsonObject);template.write(new FileOutputStream("C:\\Users\\Administrator\\Desktop\\1.docx"));template.close();if (StringUtils.isNotBlank(jsonObject.getString("emissionPermit"))) {//说明排污许可证上传了XWPFDocument document = new XWPFDocument(new FileInputStream("C:\\Users\\Administrator\\Desktop\\1.docx"));// 获取文档中的表格列表List<XWPFTable> tables = document.getTables();String path_pre = jsonObject.getString("emissionPermit");String fileNames = jsonObject.getString("fileNames");// 遍历表格for (XWPFTable table : tables) {// 遍历表格的行List<XWPFTableRow> rows = table.getRows();for (XWPFTableRow row : rows) {// 遍历行的单元格List<XWPFTableCell> cells = row.getTableCells();for (XWPFTableCell cell : cells) {// 获取单元格的文本内容String cellText = cell.getText();if (cellText.contains(path_pre)) {XWPFRun run = cell.getParagraphs().get(0).getRuns().get(0);run.setText("", 0);//置空里面的参数{{emissionPermit}}for (String filename : fileNames.split(",")) {String file_path = path_pre + filename;System.out.println("file_path = " + file_path);// 加载Word文档if (file_path.endsWith(".png")) {int type = XWPFDocument.PICTURE_TYPE_PNG;insertImage(file_path, type, run, filename);}if (file_path.endsWith(".jpg")) {int type = XWPFDocument.PICTURE_TYPE_JPEG;insertImage(file_path, type, run, filename);}if (file_path.endsWith(".pdf")) {String newFilePath = file_path.replace(".pdf", ".png");convertPdfToImage(file_path, newFilePath);int type = XWPFDocument.PICTURE_TYPE_PNG;insertImage(newFilePath, type, run, filename);File newFile = new File(newFilePath);newFile.delete();//把pdf生成的png图片删除}}// 保存修改后的文档FileOutputStream outputStream1 = new FileOutputStream("C:\\Users\\Administrator\\Desktop\\1.docx");document.write(outputStream1);outputStream1.close();}}}}}//jsonObject.remove("emissionPermit");}//将pdf转为pngprivate static void convertPdfToImage(String pdfPath, String imagePath) throws IOException {PDDocument document = PDDocument.load(new File(pdfPath));PDFRenderer renderer = new PDFRenderer(document);BufferedImage image = renderer.renderImage(0); // 渲染第一页为图像ImageIO.write(image, "PNG", new File(imagePath));document.close();}//将图片插入到指定位置private static void insertImage(String filePath, int type, XWPFRun run, String fileName) {try (InputStream pngInputStream = new FileInputStream(filePath)) {byte[] jpgBytes = IOUtils.toByteArray(pngInputStream);run.addPicture(new ByteArrayInputStream(jpgBytes), type, fileName, Units.toEMU(300), Units.toEMU(200));} catch (Exception e) {//LOGGER.info("tcfd插入图片异常,异常原因:",e.getMessage(),e);throw new RuntimeException(e);}}
}

在网上找了半天也么有什么好的方式可以在指定的位置直接将pdf插入进去,如果哪位大神有好的方式,可以留个言

如果在运行的过程中有这个报错:java.lang.NoClassDefFoundError: org/apache/fontbox/cmap/CMapParser

请加下下面的依赖

        <dependency><groupId>org.apache.pdfbox</groupId><artifactId>fontbox</artifactId><version>2.0.27</version></dependency>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/26770.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

配置spark

配置spark Yarn 模式Standalone 模式Local 模式 Yarn 模式 tar -zxvf spark-3.0.0-bin-hadoop3.2.tgz -C /opt/module cd /opt/module mv spark-3.0.0-bin-hadoop3.2 spark-yarn修改 hadoop 配置文件/opt/module/hadoop/etc/hadoop/yarn-site.xml, 并分发 <!--是否启动一…

短视频矩阵系统源码--开发实践

短视频矩阵系统源码开发技术&#xff1a; 1. 数据采集&#xff1a;使用Python的requests库进行数据爬取&#xff0c;使用Selenium模拟浏览器操作&#xff0c;解决抖音反爬虫机制。 2. 数据处理&#xff1a;使用Python的正则表达式、BeautifulSoup等库进行数据处理。 3. 关键…

【C++医学影像PACS】CT检查中的三维重建是什么检查?

一、【PACS影像科普】CT检查中的三维重建是什么检查&#xff1f; 三维重建是多层螺旋CT的一个最大的优点&#xff0c;也是影像工作多年来&#xff0c;从横断解剖到多平面&#xff0c;乃至立体的一次飞跃&#xff0c;让抽象变的形象&#xff0c;大大地提高了准确性&#xff0c;为…

力扣142. 环形链表 II

题目 给定一个链表的头节点head&#xff0c;返回链表开始入环的第一个节点。 如果链表无环&#xff0c;则返回null。 链接&#xff1a;142. 环形链表 II - 力扣&#xff08;LeetCode&#xff09; 题解 方法一&#xff1a;设置两个指针&#xff0c;一个指针指向链表头结点&#…

支付通道及系统设计

支付渠道&#xff0c;也可以叫支付通道&#xff0c;是指能够提供资金流转功能的通道&#xff0c;包括但不限于银行、第三方支付机构。我们常见的借记卡&#xff08;储蓄卡&#xff09;、贷记卡&#xff08;信用卡&#xff09;、微信、支付宝、云闪付等支付方式&#xff0c;都是…

使用vue3 + Ts + Vite + ElementPlus实现一个抽奖程序

一. 说明 这是一个通过vue3 Ts Vite ElementPlus实现的一个抽奖程序。项目链接 二. 整体架构与功能描述 左侧设置了奖品说明&#xff0c;每个奖项配有文字和图片简介。总共设置了四个奖项&#xff0c;分别是特等奖1名&#xff0c;一等奖2名&#xff0c;二等奖5名&#xf…

Eureka的使用手册

一、导入依赖&#xff08;服务端和客户端导入的依赖不一样&#xff09; 服务端&#xff1a; <dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependenc…

Camtasia Studio 2023怎么导出mp4格式的视频的详细教程介绍

很多用户刚接触Camtasia Studio 2023&#xff0c;不熟悉如何保存mp4格式的视频。在今天的文章中小编为大家带来了Camtasia Studio 2023保存为mp4格式的视频的详细教程介绍。 Camtasia Studio 2023保存为mp4格式的视频的详细教程 1、 打开Camtasia Studio。 Camtasia Studio- …

[相遇 Bug] - ImportError: numpy.core.multiarray failed to import

背景: 因为最近在看点云模型, 在自己的环境上部署该项目: https://github.com/open-mmlab/OpenPCDet/tree/master 执行命令: 这里执行github项目给的demo.py文件, 命令格式如下: python demo.py --cfg_file cfgs/kitti_models/pointpillar.yaml --ckpt xxx/pointpillar_772…

PLSQL编程

1.概念和目的 1.1. 什么是PL/SQL? PL/SQL&#xff08;Procedure Language/SQL&#xff09; 是Oracle对sql语言的过程化扩展 (类似于Basic)&#xff1b; 指在SQL命令语言中增加了过程处理语句&#xff08;如分支、循环等&#xff09;&#xff0c;使SQL语言具有过程处理能力。…

做渲染多好的CPU配置才够用?经常看到的核心和线程数到底是什么?

很多设计师想买一台做渲染的电脑时&#xff0c;经常会看到处理器&#xff08;CPU&#xff09;的介绍中提到几核几线程的信息&#xff0c;却不懂到底是什么意思。其实CPU的几核几线程是指CPU的核心数和线程数&#xff0c;它们是衡量CPU性能的两个重要指标。那么做渲染要有多好的…

等保——windows终端和服务器测评

一、本文适用于Windows系统&#xff0c;但有些版本不适用&#xff0c;例如win10、win11等&#xff0c;因为没有密码策略模块 二、针对于win7的测评过程 1、winR打开命令行&#xff0c;输入gpedit.msc&#xff0c;打开本地组策略编辑器&#xff08;win10以上版本没有这个模块&…