Java调用py或者exe文件实现word转PDF

前言

有次上班时小伙伴和我吐槽Java实现word转pdf太麻烦,我灵机一动Java调用python,python实现转换操作不就行了。

开发环境

Java:JDK1.8

python:3.12

代码

python 复制代码
import docx2pdf
import sys
import glob
import os


def w2ps(d):
    word_file = d
    pdf_file = d.replace('.docx', '.pdf').replace('.doc', '.pdf')
    docx2pdf.convert(word_file, pdf_file)
    print(f"转换完成,PDF文件已保存为:{pdf_file}")


def each():
    # 获取当前工作目录
    current_directory = os.getcwd()

    # 使用glob查找所有.doc文件
    doc_files = glob.glob(os.path.join(current_directory, '*.doc'))
    doc_files1 = glob.glob(os.path.join(current_directory, '*.docx'))

    # 遍历文件列表并打印文件路径
    for file_path in doc_files:
        w2ps(file_path)
    for file_path in doc_files1:
        w2ps(file_path)


if __name__ == "__main__":
    if len(sys.argv) > 1:
        w2ps(sys.argv[1])
    else:
        each()
java 复制代码
import java.io.IOException;

public class PythonCaller {

    public static void main111(String[] args) {
        String pythonScriptPath = "D:\\WorkSpace\\python\\pycorrector-master\\shany\\W2P.py"; // Python脚本的路径
        String wordFilePath = "E:\\新建文件夹 (22)\\问题排查.docx"; // 要转换的Word文件的路径

        try {
            String command = "python " + pythonScriptPath + " \"" + wordFilePath+"\"";
            Process process = Runtime.getRuntime().exec(command);

        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        String executablePath = "D:\\新建文件夹\\a\\W2P.exe"; // 替换为你的a.exe文件的实际路径
        String wordFilePath = "E:\\新建文件夹 (22)\\问题排查.docx"; // 替换为你的Word文件路径

        try {
            // 将Word文件路径作为命令行参数传递给a.exe
            String[] command = {executablePath, wordFilePath};
            Process process = Runtime.getRuntime().exec(command);

            // 等待进程完成
            int exitCode = process.waitFor();
            System.out.println("Process exited with code " + exitCode);

        } catch (IOException | InterruptedException e) {
            e.printStackTrace();
        }
    }
}

备注

这里的python文件后来为了防止缺少三方依赖,单独打包成exe文件。Java代码中额外加了对exe文件的调用。

拓展

顺手额外写了一个pdf转word的,功能用法基本一样

python 复制代码
from pdf2docx import Converter
import sys
import glob
import os


def pdf_to_word(pdf_path, word_path):
    cv = Converter(pdf_path)
    cv.convert(word_path, start=0, end=None)
    cv.close()


def p2ws(file_path):
    pdf_file = file_path
    word_file = file_path.replace('.pdf', '.docx')
    pdf_to_word(pdf_file, word_file)
    print(f"转换完成,WORD文件已保存为:{pdf_file}")


def each():
    # 获取当前工作目录
    current_directory = os.getcwd()

    # 使用glob查找所有.doc文件
    doc_files = glob.glob(os.path.join(current_directory, '*.pdf'))

    # 遍历文件列表并打印文件路径
    for file_path in doc_files:
        p2ws(file_path)


if __name__ == "__main__":
    if len(sys.argv) > 1:
        p2ws(sys.argv[1])
    else:
        each()
相关推荐
飞滕人生TYF1 分钟前
位运算实现加法 的过程中 保证最终进位为 0 详解
java·位运算
七侠镇莫尛貝大侠20234 分钟前
C:mbedtls库实现https双向认证连接示例_七侠镇莫尛貝大侠20241122
c语言·开发语言·https
数据小爬虫@6 分钟前
利用Python爬虫获取淘宝商品评论:实战案例分析
开发语言·爬虫·python
情勤坊14 分钟前
JAVA实现将PDF转换成word文档
java·pdf·word
苹果酱056715 分钟前
springcloud-网关路由gateway
java·开发语言·spring boot·mysql·中间件
武子康21 分钟前
Java-08 深入浅出 MyBatis - 多对多模型 SqlMapConfig 与 Mapper 详细讲解测试
java·开发语言·数据库·sql·mybatis
摇滚侠28 分钟前
java http body的格式 ‌application/x-www-form-urlencoded‌不支持文件上传
java·开发语言·http
檀越剑指大厂38 分钟前
【Python系列】 Base64 编码:使用`base64`模块
开发语言·python
誓约酱42 分钟前
(动画)Qt控件 QLCDNumer
开发语言·c++·git·qt·编辑器