Java利⽤openoffice将doc、docx转为pdf实例代码svg无损转化为pdf
本⽂研究的主要是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的转码服务启动以后,该进程(进程名称是)会⼀直存在,并且⼤约占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.tion.OpenOfficeConnection;
import com.artofsolving.tion.SocketOpenOfficeConnection;
import com.artofsolving.verter.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 (!ists()) {
return -1;
// 不到源⽂件, 则返回-1
}
// 如果⽬标路径不存在, 则新建该路径
File outputFile = new File(destFile);
if (!ParentFile().exists()) {
}
String OpenOffice_HOME = openOfficePath;
//这⾥是OpenOffice的安装⽬录
// 如果从⽂件中读取的URL地址最后⼀个字符不是 '\',则添加'\'
if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {
OpenOffice_HOME += "\\";
}
// 启动OpenOffice的服务
String command = OpenOffice_HOME
+ "program\\ -headless -accept=\"socket,host=127.0.0.1,port=8100;
urp;
\"";
Process pro = Runtime().exec(command);
// connect to instance running on port 8100
OpenOfficeConnection connection = new SocketOpenOfficeConnection(
"127.0.0.1", 8100);
// convert
DocumentConverter converter = new OpenOfficeDocumentConverter(
connection);
// 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配置错误");
}
}
}
总结
以上就是本⽂关于Java利⽤openoffice将doc、docx转为pdf实例代码的全部内容,希望对⼤家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不⾜之处,欢迎留⾔指出。感谢朋友们对本站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。