使用openOffice将office文件转成pdf

Posted lgqrlchinese

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用openOffice将office文件转成pdf相关的知识,希望对你有一定的参考价值。

    1. 下载安装openoffice,下载地址:http://www.openoffice.org/download/
    2. 我安装的目录:
      技术图片
    3. 输入cmd回车
      技术图片
      在命令窗口输入
      soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" –nofirststartwizard
      此时服务就开启了
    4. 将以下代码放到工具类里面,直接调用即可
       1 import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
       2 import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
       3 import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
       4 ...
       5 ...
       6     public File office2Pdf(String srcPath, String pdfPath) throws Exception {
       7         // 源文件目录
       8         File inputFile = new File(srcPath);
       9         if (!inputFile.exists()) {
      10             throw new Exception("程序出现问题,文件不存在");
      11         }
      12         // 输出文件目录
      13         File outputFile = new File(pdfPath);
      14         if (!outputFile.exists()) {
      15             outputFile.createNewFile();
      16         }
      17         // 调用openoffice服务线程
      18         String command = openOfficeCommand;
      19         Process process = Runtime.getRuntime().exec(command);
      20 
      21         // 连接openoffice服务
      22         OpenOfficeConnection connection = new SocketOpenOfficeConnection(openOfficeUrl, openOfficePort);
      23         connection.connect();
      24 
      25         // 转换word到pdf
      26         DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
      27         converter.convert(inputFile, outputFile);
      28         // 关闭连接
      29         connection.disconnect();
      30         // 关闭进程
      31         process.destroy();
      32         return outputFile;
      33     }
      34 ...

       

以上是关于使用openOffice将office文件转成pdf的主要内容,如果未能解决你的问题,请参考以下文章

OpenOffice实现Office转Pdf(支持自定义添加水印页眉页脚)

将 excel、openoffice 和 ms office 2007 数据导入到 rails 中的 db

Openoffice套件可以打开EXCEL WORD文档吗?

Java实现word文档在线预览,读取office文件

OpenOffice 和 MS Office 格式转换为 TIFF

基于openOffice和python实现office转pdf和html示例代码