Java利用OpenOffice将word等office文档转换成PDF

一、安装openOffice

1. 先在openOffice的官网http://www.openoffice.org/download/other.html上下载对应linux系统的软件包。

2. 使用tar -xzvf OOo_4.1.0_LinuxIntel_install_wJRE_en-US.tar.gz解压缩后,会得到OOO410_m12_native_packed-1_en-US.9483

3.进入OOO410_m12_native_packed-1_en-US.9483目录: cd OOO320_m12_native_packed-1_en-US.9483
4.进入到RPMS目录: cd RPMS
5.执行 rpm –ivh *rpm(安装所有rpm文件)
6.进入到desktop-integration目录 cd desktop-integration
7.执行 rpm -ivh openoffice.org3.2-redhat-menus-3.2-9472.noarch.rpm
这时openOffice己经安装完成,默认会安装在/opt下

二、启动openOffice服务 
1.进入opt目录:cd /opt
2.进入openoffice.org3目录: cd openoffice.org3
3.进入program目录
4.执行 soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard & 
5.完成启动

、java代码

  1. /** 
  2.      * 将Office文档转换为PDF. 运行该函数需要用到OpenOffice, OpenOffice下载地址为 
  3.      * http://www.openoffice.org/ 
  4.      *  
  5.      * <pre> 
  6.      * 方法示例: 
  7.      * String sourcePath = "F:\\office\\source.doc"; 
  8.      * String destFile = "F:\\pdf\\dest.pdf"; 
  9.      * Converter.office2PDF(sourcePath, destFile); 
  10.      * </pre> 
  11.      *  
  12.      * @param sourceFile 
  13.      *            源文件, 绝对路径. 可以是Office2003-2007全部格式的文档, Office2010的没测试. 包括.doc, 
  14.      *            .docx, .xls, .xlsx, .ppt, .pptx等. 示例: F:\\office\\source.doc 
  15.      * @param destFile 
  16.      *            目标文件. 绝对路径. 示例: F:\\pdf\\dest.pdf 
  17.      * @return 操作成功与否的提示信息. 如果返回 -1, 表示找不到源文件, 或url.properties配置错误; 如果返回 0, 
  18.      *         则表示操作成功; 返回1, 则表示转换失败 
  19.      */  
  20.     public static int office2PDF(String sourceFile, String destFile) {  
  21.         try {  
  22.             File inputFile = new File(sourceFile);  
  23.             if (!inputFile.exists()) {  
  24.                 return -1;// 找不到源文件, 则返回-1  
  25.             }  
  26.   
  27.             // 如果目标路径不存在, 则新建该路径  
  28.             File outputFile = new File(destFile);  
  29.             if (!outputFile.getParentFile().exists()) {  
  30.                 outputFile.getParentFile().mkdirs();  
  31.             }  
  32.   
  33.             String OpenOffice_HOME = "D:\\Program Files\\OpenOffice.org 3";//这里是OpenOffice的安装目录, 在我的项目中,为了便于拓展接口,没有直接写成这个样子,但是这样是绝对没问题的  
  34.             // 如果从文件中读取的URL地址最后一个字符不是 '\',则添加'\'  
  35.             if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {  
  36.                 OpenOffice_HOME += "\\";  
  37.             }  
  38.             // 启动OpenOffice的服务  
  39.             String command = OpenOffice_HOME  
  40.                     + "program\\soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";  
  41.             Process pro = Runtime.getRuntime().exec(command);  
  42.             // connect to an OpenOffice.org instance running on port 8100  
  43.             OpenOfficeConnection connection = new SocketOpenOfficeConnection(  
  44.                     "127.0.0.1"8100);  
  45.             connection.connect();  
  46.   
  47.             // convert  
  48.             DocumentConverter converter = new OpenOfficeDocumentConverter(  
  49.                     connection);  
  50.             converter.convert(inputFile, outputFile);  
  51.   
  52.             // close the connection  
  53.             connection.disconnect();  
  54.             // 关闭OpenOffice服务的进程  
  55.             pro.destroy();  
  56.   
  57.             return 0;  
  58.         } catch (FileNotFoundException e) {  
  59.             e.printStackTrace();  
  60.             return -1;  
  61.         } catch (ConnectException e) {  
  62.             e.printStackTrace();  
  63.         } catch (IOException e) {  
  64.             e.printStackTrace();  
  65.         }  
  66.   
  67.         return 1;  
  68.     }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值