Java利用openoffice将doc、docx转为pdf实例代码

作者:风致岚珊 时间:2023-08-07 23:44:34 

本文研究的主要是Java编程利用openoffice将doc、docx转为pdf的实现代码,具体如下。

1. 需要用的软件

OpenOffice , JodConverter

2.启动OpenOffice的服务

我到网上查如何利用OpenOffice进行转码的时候,都是需要先用cmd启动一个soffice服务,启动的命令是:soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;"。

但是实际上,对于我的项目,进行转码只是偶尔进行,然而当OpenOffice的转码服务启动以后,该进程(进程名称是soffice.exe)会一直存在,并且大约占100M的内存,感觉非常浪费。于是我就想了一个办法,可以将执行该服务的命令直接在Java代码里面调用,然后当转码完成的时候,直接干掉这个进程。在后面的JAVA代码里面会有解释。

所以,实际上,这第2步可以直接跳过

3.将JodConverter相关的jar包添加到项目中

将JodConverter解压缩以后,把lib下面的jar包全部添加到项目中

注意:安装openoffice

4. 下面就是重点喽,详见Java代码解析


package cn;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
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;
/**
* office转化为pdf
* pdf转化为swf文件
* @author Administrator
*
*/
public class Converter {
private static String openOfficePath = "E:\\安装软件\\openoffice\\date";
//openoffice软件的安装路径
/**
  * 将Office文档转换为PDF. 运行该函数需要用到OpenOffice和jodconverter-2.2.2
  * <pre>
  * 方法示例:
  * String sourcePath = "F:\\office\\source.doc";
  * String destFile = "F:\\pdf\\dest.pdf";
  * Converter.office2PDF(sourcePath, destFile);
  * </pre>
  *  
  * @param sourceFile
  *      源文件, 绝对路径. 可以是Office2003-2007全部格式的文档, Office2010的没测试. 包括.doc,
  *      .docx, .xls, .xlsx, .ppt, .pptx等. 示例: F:\\office\\source.doc
  * @param destFile
  *      目标文件. 绝对路径. 示例: F:\\pdf\\dest.pdf
  * @return 操作成功与否的提示信息. 如果返回 -1, 表示找不到源文件, 或url.properties配置错误; 如果返回 0,
  *     则表示操作成功; 返回1, 则表示转换失败
  */
public static int office2PDF(String sourceFile, String destFile) {
try {
File inputFile = new File(sourceFile);
if (!inputFile.exists()) {
return -1;
// 找不到源文件, 则返回-1
}
// 如果目标路径不存在, 则新建该路径  
File outputFile = new File(destFile);
if (!outputFile.getParentFile().exists()) {
outputFile.getParentFile().mkdirs();
}
String OpenOffice_HOME = openOfficePath;
//这里是OpenOffice的安装目录  
// 如果从文件中读取的URL地址最后一个字符不是 '\',则添加'\'  
if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {
OpenOffice_HOME += "\\";
}
// 启动OpenOffice的服务  
String command = OpenOffice_HOME  
         + "program\\soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;
urp;
\"";
Process pro = Runtime.getRuntime().exec(command);
// connect to an OpenOffice.org instance running on port 8100  
OpenOfficeConnection connection = new SocketOpenOfficeConnection(  
         "127.0.0.1", 8100);
connection.connect();
// convert  
DocumentConverter converter = new OpenOfficeDocumentConverter(  
         connection);
converter.convert(inputFile, outputFile);
// close the connection  
connection.disconnect();
// 关闭OpenOffice服务的进程  
pro.destroy();
return 0;
}
catch (FileNotFoundException e) {
e.printStackTrace();
return -1;
}
catch (IOException e) {
e.printStackTrace();
}
return 1;
}
public static void main(String []args) throws Exception {
String sourcePath = "C:\\Users\\Administrator\\Desktop\\1\\分组情况一览表.xls";
String destFile = "C:\\Users\\Administrator\\Desktop\\1\\dest.pdf";
int flag = Converter.office2PDF(sourcePath, destFile);
if (flag == 1) {
System.out.println("转化失败");
} else if(flag == 0){
System.out.println("转化成功");
} else {
System.out.println("找不到源文件, 或url.properties配置错误");
}
}
}

总结

来源:http://blog.csdn.net/freewindgo/article/details/54693027

标签:java,openoffice,pdf
0
投稿

猜你喜欢

  • Spring5路径匹配器PathPattern解析

    2021-07-09 00:12:28
  • java中public class与class的区别详解

    2023-04-09 11:49:40
  • Android闹钟机制实现定时任务功能

    2021-08-06 07:36:03
  • java读取解析xml文件实例

    2023-01-04 05:52:40
  • Android string.xml中的替换方法

    2021-11-10 11:47:56
  • Java 通过AQS实现数据组织

    2023-04-05 22:19:29
  • Android实战教程第六篇之一键锁屏应用问题解决

    2023-01-28 03:13:22
  • Java 高并发五:JDK并发包1详细介绍

    2022-11-29 08:56:26
  • Spring Boot实现分布式锁的自动释放的示例代码

    2023-10-17 11:06:24
  • Java访问WebService返回XML数据的方法

    2023-11-10 21:23:09
  • 基于Spring-Security自定义登陆错误提示信息

    2021-09-20 17:33:40
  • Mybatis无法获取带有下划线前缀的字段的值问题

    2023-07-20 10:06:33
  • c#使用ManagedWifi查看当前Wifi信号并选择wifi的示例

    2021-07-06 15:37:18
  • java实现通讯录管理系统

    2021-07-02 00:19:53
  • spring mvc4的日期/数字格式化、枚举转换示例

    2021-11-07 09:49:11
  • C#验证身份证号码正确性的实例代码(收藏)

    2023-12-18 17:28:33
  • C语言 超详细总结讲解二叉树的概念与使用

    2023-11-08 20:24:56
  • java并发分段锁实践代码

    2021-10-08 04:55:45
  • java数据结构基础:稀疏数组

    2021-12-18 19:01:17
  • Android使用shape绘制阴影图层阴影效果示例

    2021-11-25 01:19:39
  • asp之家 软件编程 m.aspxhome.com