博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
记录libreoffice实现office转pdf(适用于windows、linux)
阅读量:6302 次
发布时间:2019-06-22

本文共 3539 字,大约阅读时间需要 11 分钟。

由于目前的工作跟office打交道比较多,所以才有了此篇blog,需求是实现word转换pdf方便页面展示。之前lz采用的是jacob(仅支持windows)进行转换的,但是现在服务器改成linux显然不能用了,于是网上搜罗一圈,最终决定采用LibreOffice。(前提:需要安装jdk环境)

LibreOffice中文官网:   下载合适的版本,本文下载的是6.1.6 

已上传百度网盘(链接: https://pan.baidu.com/s/1hS-GUT5yXaDgFDMWq3mjXQ 提取码: 1e9z)

一:windows下实现office转pdf

安装:直接一键默认安装

环境变量:在path前加入libreoffice安装路径(如:D:\Program Files\LibreOffice\program)

进入dos窗口输入soffice 如果弹出libreoffice界面则表示安装成功

java程序实现转换操作(原理通过cmd调用libreoffice指令)

/**     * 利用libreOffice将office文档转换成pdf     * @param inputFile  目标文件地址     * @param pdfFile    输出文件夹     * @return     */    public static boolean convertOffice2PDF(String inputFile, String pdfFile){        long start = System.currentTimeMillis();        String command;        boolean flag;        String osName = System.getProperty("os.name");        if (osName.contains("Windows")) {            command = "cmd /c soffice --headless --invisible --convert-to pdf:writer_pdf_Export " + inputFile + " --outdir " + pdfFile;        }else {            command = "libreoffice --headless --invisible --convert-to pdf:writer_pdf_Export " + inputFile + " --outdir " + pdfFile;        }        flag = executeLibreOfficeCommand(command);        long end = System.currentTimeMillis();        logger.debug("用时:{} ms", end - start);        return flag;    }    /**     * 执行command指令     * @param command     * @return     */    public static boolean executeLibreOfficeCommand(String command) {        logger.info("开始进行转化.......");        Process process;// Process可以控制该子进程的执行或获取该子进程的信息        try {            logger.debug("convertOffice2PDF cmd : {}", command);            process = Runtime.getRuntime().exec(command);// exec()方法指示Java虚拟机创建一个子进程执行指定的可执行程序,并返回与该子进程对应的Process对象实例。            // 下面两个可以获取输入输出流//            InputStream errorStream = process.getErrorStream();//            InputStream inputStream = process.getInputStream();        } catch (IOException e) {            logger.error(" convertOffice2PDF {} error", command, e);            return false;        }        int exitStatus = 0;        try {            exitStatus = process.waitFor();// 等待子进程完成再往下执行,返回值是子线程执行完毕的返回值,返回0表示正常结束            // 第二种接受返回值的方法            int i = process.exitValue(); // 接收执行完毕的返回值            logger.debug("i----" + i);        } catch (InterruptedException e) {            logger.error("InterruptedException  convertOffice2PDF {}", command, e);            return false;        }        if (exitStatus != 0) {            logger.error("convertOffice2PDF cmd exitStatus {}", exitStatus);        } else {            logger.debug("convertOffice2PDF cmd exitStatus {}", exitStatus);        }        process.destroy(); // 销毁子进程        logger.info("转化结束.......");        return true;    }  

二:Linux下实现office转pdf

安装:把下载下来的三个安装包上传到linux,采用  tar -xvf xxxxxx.tar.gz解压即可

然后进入RPMS包下,采用yum localinstall *.rpm安装rpm文件

测试是否安装成功:libreoffice6.1 -help

为了使用libreoffice创建别名

[root@VM]# alias libreoffice='libreoffice6.0'[root@VM]# aliasalias cp='cp -i'alias egrep='egrep --color=auto'alias fgrep='fgrep --color=auto'alias grep='grep --color=auto'alias l.='ls -d .* --color=auto'alias libreoffice='libreoffice6.0'alias ll='ls -l --color=auto'alias ls='ls --color=auto'

linux下面命令行测试word转pdf(其参数与windows下的参数大体相同)

命令:libreoffice --convert-to pdf:writer_pdf_Export /usr/lib/files/白头拟稿纸.doc --outdir /usr/lib/files/

关于word转pdf中文乱码问题处理

1:查看fonts目录:cat /etc/fonts/fonts.conf | grep fon

得知字体存放位置:/usr/share/fonts

2: 把Windows下的字体C:\Windows\Fonts下的宋体,即simsun.ttc上传到linux服务器

在fonts下新建Fonts文件 把字体上传到该路径下即可

 

转载于:https://www.cnblogs.com/chenpt/p/11096265.html

你可能感兴趣的文章
linux每日命令(16):head命令
查看>>
公司内部分享【富有成效的每日站会】总结
查看>>
打造一个上传图片到图床利器的插件(Mac版 开源)
查看>>
iOS横竖屏
查看>>
thinkphp判断更新是否成功
查看>>
Do While ... Loop 与 Do Until ... Loop 的区别
查看>>
【Linux】查询某个字符串出现次数
查看>>
高效使用jquery之一:请使用'On'函数
查看>>
冲刺第一周第三天
查看>>
ERP环境检测工具设计与实现 Environment Detection
查看>>
不要在构造中做太多事情,不然有时候会出现有意思的代码~
查看>>
IIS 发布网站遇到的问题
查看>>
NuGet学习笔记(2)——使用图形化界面打包自己的类库
查看>>
xcode中没有autoSizing的设置
查看>>
字符编码
查看>>
企业应用:应用层查询接口设计
查看>>
浅谈Excel开发:十 Excel 开发中与线程相关的若干问题
查看>>
nfd指令的详细说明
查看>>
安装VisualSvn Server时遇到的问题
查看>>
不用Visual Studio,5分钟轻松实现一张报表
查看>>