LibreOffice实现word转pdf

3 篇文章 0 订阅

1,下载安装LibreOffice(根据系统下载对应版本),这里提供windows64的版本(LibreOffice_6.2.8_Win_x64.msi)

https://download.csdn.net/download/weixin_46054799/13763983

2,实现过程

主要代码其实只有一句

libreOfficePath 是软件安装的根目录(C:\Program Files\LibreOffice\program)注意是program文件夹;

command = libreOfficePath + File.separator + "soffice --convert-to pdf "  + 源文件路劲 + " --outdir " + 转换后路径;

下面是我需要的实现过程,之前判断了系统,现在linux系统和windows命令一样了,也就不需要判断了,可以做参考

 public static synchronized boolean libreDoc2Pdf(String docPath, String outDir, String libreOfficePath) throws Exception {
        try {
            String osName = System.getProperty("os.name");
            String command;
            if (osName.contains("Windows")) {
                //soffice --convert-to pdf  --outdir E:/test.docx
                command = libreOfficePath + File.separator + "soffice --convert-to pdf "  + docPath + " --outdir " + outDir;
            } else {
                File file = new File(docPath);
//                command = "doc2pdf --output=" + outDir + File.separator + file.getName().replaceAll(".(?i)doc", ".pdf") + " " + docPath;

                //2020-5-29,在centos上实测,Libreoffice 5.3.6.1的转换pdf的命令格式与windows系统的相同
                command = libreOfficePath + File.separator + "soffice --convert-to pdf "  + docPath + " --outdir " + outDir;
            }

            String result = executeCommand(command);

            log.info("Convert to pdf result: {}", result);

            if (result.equals("") || result.contains("writer_pdf_Export")) {
                return true;
            }
        } catch (Exception e) {
            throw e;
        }
        return false;
    }

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值