Java word 转 pdf

最近用户要求导出pdf,项目已实现word导出,所以想到将word转pdf,从而避免了重新写pdf模板

自己亲测过得两种较好的word转pdf方式

  • JobConverter + OpenOffice(暂时只献上Windows版本)

    前提:需安装OpenOffice以及在项目中导入JobConverter的jar包

    OpenOffice安装链接http://www.openoffice.org/download/index.html

    需要的jar包

        <dependency>
            <groupId>com.artofsolving</groupId>
            <artifactId>jodconverter</artifactId>
            <version>2.2.2</version>
        </dependency>

        <dependency>
            <groupId>com.artofsolving</groupId>
            <artifactId>jodconverter-cli</artifactId>
            <version>2.2.2</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.openoffice/ridl -->
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>ridl</artifactId>
            <version>4.1.2</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.openoffice/juh -->
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>juh</artifactId>
            <version>4.1.2</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.openoffice/unoil -->
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>unoil</artifactId>
            <version>4.1.2</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/org.openoffice/jurt -->
        <dependency>
            <groupId>org.openoffice</groupId>
            <artifactId>jurt</artifactId>
            <version>4.1.2</version>
        </dependency>

提醒:网传jodconverter在2.2.2以下的版本无法将docx转换为pdf,在maven中央仓库也未找到jodconverter2.2.2版本,在sourceforge上找到jodconverter2.2.2版本特地分享链接:https://sourceforge.net/projects/jodconverter/files/JODConverter/2.2.2/

为了更方便大家,在这提供以上jar包,百度网盘链接:https://pan.baidu.com/s/1Pwo7I7NntlefcW0DGQV02w 提取码:a07m

好了,之后就直接上代码啦

import com.artofsolving.jodconverter.DocumentConverter;
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;

import java.io.File;
import java.io.IOException;

/**
 * author: LQB
 * create: 2019-02-16 20:50
 **/
public class Test {
    // 将word格式的文件转换为pdf格式
    public static void WordToPDF(String startFile, String overFile) throws IOException {
        // 源文件目录
        File inputFile = new File(startFile);
        if (!inputFile.exists()) {
            System.out.println("源文件不存在!");
            return;
        }

        // 输出文件目录
        File outputFile = new File(overFile);
        if (!outputFile.getParentFile().exists()) {
            outputFile.getParentFile().mkdirs();
        }

        // 调用openoffice服务线程
        /** 我把openOffice下载到了 C:/Program Files (x86)/下  ,下面的写法自己修改编辑就可以**/
        String command = "C:/Program Files (x86)/OpenOffice 4/program/soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";
        Process p = Runtime.getRuntime().exec(command);

        // 连接openoffice服务
        OpenOfficeConnection connection = new SocketOpenOfficeConnection("127.0.0.1", 8100);
        connection.connect();

        // 转换
        DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
        converter.convert(inputFile, outputFile);

        // 关闭连接
        connection.disconnect();

        // 关闭进程
        p.destroy();
    }

    public static void main(String[] args) {
        String start = "C:\\upLoad\\all.doc";
        String over = "C:\\upLoad\\all.pdf";
        try {
            WordToPDF(start, over);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

 

  • xdocreport

如果要用xdocreport的话,可直接参考这个github文章:https://github.com/yeokm1/docs-to-pdf-converter

总结:

 优点缺点
JobConverter + OpenOffice跨平台需安装软件
xdocreport跨平台,不需安装软件只支持doc,docx,ppt,pptx,odt转pdf

 

 

 

 

参考文章:https://blog.csdn.net/csdnFlyFun/article/details/79523262

文章如有什么问题,欢迎大佬们指正

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值