Java doc等文件生成PDF、多个PDF合并

之前写过一遍文章是 图片生成PDF。

今天继续来对 doc等文件进行pdf合并以及多个pdf合并为一个pdf。

兄弟们,还是开箱即用。

1、doc生成pdf

依赖

xml 复制代码
 <!--  doc生成pdf  -->
        <dependency>
            <groupId>com.aspose</groupId>
            <artifactId>aspose-words</artifactId>
            <version>20.4</version>
        </dependency>

示例代码

java 复制代码
import com.aspose.words.Document;
import com.aspose.words.SaveFormat;
import lombok.extern.slf4j.Slf4j;
import java.io.*;

/**
 * doc生成pdf 依靠依赖 aspose-words
 * @Author hanmw
 **/
@Slf4j
public class Doc2Pdf {
    public static void main(String[] args) throws Exception {
        doc2pdf(null,null);
    }

    /**
     * doc 生成 pdf
     * @param inPath doc路径
     * @param outPath pdf路径
     */
    public static void doc2pdf(String inPath, String outPath) {
        inPath = "D:\\doc\\生成word、生成pdf、合并pdf\\维修报告.docx";
        outPath = "D:\\doc\\生成word、生成pdf、合并pdf\\12.pdf";
        FileOutputStream os = null;
        try {
            // 新建一个空白pdf文档
            File file = new File(outPath);
            os = new FileOutputStream(file);
            // 读取doc文档
            Document doc = new Document(inPath);
            // 全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF,EPUB, XPS, SWF 相互转换
            doc.save(os, SaveFormat.PDF);

            System.out.println("doc生成pdf成功!");
        } catch (Exception e) {
            log.error("doc2pdf failed", e);
        } finally {
            if (os != null) {
                try {
                    os.close();
                } catch (IOException e) {
                    log.error("关闭os失败", e);
                }
            }
        }
    }

}

2、多个pdf合并为一个pdf

依赖

xml 复制代码
     <!--  适用于 多个pdf合并 -->
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>2.0.28</version>
        </dependency>

示例代码

java 复制代码
import lombok.extern.slf4j.Slf4j;
import org.apache.pdfbox.multipdf.PDFMergerUtility;
import java.io.File;
import java.io.IOException;

/**
 * 合并PDF 依靠依赖 org.apache.pdfbox
 * @Author hanmw
 **/
@Slf4j
public class PdfMergeController {
    public static void main(String[] args) {
        mergePdf();
    }


    public static void mergePdf(){
        // 定义要合并的PDF文件列表
        File[] pdfFiles = {
                new File("D:\\SoftWare\\图片\\测试pdf\\file_one.pdf"),
                new File("D:\\SoftWare\\图片\\测试pdf\\file_two.pdf"),
                new File("D:\\SoftWare\\图片\\测试pdf\\file_three.pdf")
        };

        // 定义合并后的输出文件
        String mergeFilePath = "D:\\SoftWare\\图片\\测试pdf\\test\\merged.pdf";
        //文件地址的目录  是否存在,不存在新建目录
        File file = new File(mergeFilePath);
        if(!file.getParentFile().exists()){
            file.getParentFile().mkdirs();
        }

        try {
            // 创建PDF合并实用程序
            PDFMergerUtility pdfMerger = new PDFMergerUtility();

            // 将所有要合并的文件添加到实用程序中
            for (File pdfFile : pdfFiles) {
                pdfMerger.addSource(pdfFile);
            }

            // 设置合并后的输出文件
            pdfMerger.setDestinationFileName(mergeFilePath);

            // 执行合并操作
            pdfMerger.mergeDocuments(null);

            System.out.println("PDF合并成功!");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}
相关推荐
小_太_阳2 分钟前
Scala_【1】概述
开发语言·后端·scala·intellij-idea
向宇it3 分钟前
【从零开始入门unity游戏开发之——unity篇02】unity6基础入门——软件下载安装、Unity Hub配置、安装unity编辑器、许可证管理
开发语言·unity·c#·编辑器·游戏引擎
智慧老师11 分钟前
Spring基础分析13-Spring Security框架
java·后端·spring
lxyzcm13 分钟前
C++23新特性解析:[[assume]]属性
java·c++·spring boot·c++23
古希腊掌管学习的神39 分钟前
[LeetCode-Python版]相向双指针——611. 有效三角形的个数
开发语言·python·leetcode
赵钰老师40 分钟前
【R语言遥感技术】“R+遥感”的水环境综合评价方法
开发语言·数据分析·r语言
V+zmm101341 小时前
基于微信小程序的乡村政务服务系统springboot+论文源码调试讲解
java·微信小程序·小程序·毕业设计·ssm
就爱学编程1 小时前
重生之我在异世界学编程之C语言小项目:通讯录
c语言·开发语言·数据结构·算法
Oneforlove_twoforjob1 小时前
【Java基础面试题025】什么是Java的Integer缓存池?
java·开发语言·缓存
emoji1111111 小时前
前端对页面数据进行缓存
开发语言·前端·javascript