最近用户要求导出pdf,项目已实现word导出,所以想到将word转pdf,从而避免了重新写pdf模板
自己亲测过得两种较好的word转pdf方式
- JobConverter + OpenOffice(暂时只献上Windows版本)
前提:需安装OpenOffice以及在项目中导入JobConverter的jar包
OpenOffice安装链接:http://www.openoffice.org/download/index.html
需要的jar包
<dependency>
<groupId>com.artofsolving</groupId>
<artifactId>jodconverter</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>com.artofsolving</groupId>
<artifactId>jodconverter-cli</artifactId>
<version>2.2.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openoffice/ridl -->
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>ridl</artifactId>
<version>4.1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openoffice/juh -->
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>juh</artifactId>
<version>4.1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openoffice/unoil -->
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>unoil</artifactId>
<version>4.1.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openoffice/jurt -->
<dependency>
<groupId>org.openoffice</groupId>
<artifactId>jurt</artifactId>
<version>4.1.2</version>
</dependency>
提醒:网传jodconverter在2.2.2以下的版本无法将docx转换为pdf,在maven中央仓库也未找到jodconverter2.2.2版本,在sourceforge上找到jodconverter2.2.2版本特地分享链接:https://sourceforge.net/projects/jodconverter/files/JODConverter/2.2.2/
为了更方便大家,在这提供以上jar包,百度网盘链接:https://pan.baidu.com/s/1Pwo7I7NntlefcW0DGQV02w 提取码:a07m
好了,之后就直接上代码啦
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;
import java.io.File;
import java.io.IOException;
/**
* author: LQB
* create: 2019-02-16 20:50
**/
public class Test {
// 将word格式的文件转换为pdf格式
public static void WordToPDF(String startFile, String overFile) throws IOException {
// 源文件目录
File inputFile = new File(startFile);
if (!inputFile.exists()) {
System.out.println("源文件不存在!");
return;
}
// 输出文件目录
File outputFile = new File(overFile);
if (!outputFile.getParentFile().exists()) {
outputFile.getParentFile().mkdirs();
}
// 调用openoffice服务线程
/** 我把openOffice下载到了 C:/Program Files (x86)/下 ,下面的写法自己修改编辑就可以**/
String command = "C:/Program Files (x86)/OpenOffice 4/program/soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";
Process p = Runtime.getRuntime().exec(command);
// 连接openoffice服务
OpenOfficeConnection connection = new SocketOpenOfficeConnection("127.0.0.1", 8100);
connection.connect();
// 转换
DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
converter.convert(inputFile, outputFile);
// 关闭连接
connection.disconnect();
// 关闭进程
p.destroy();
}
public static void main(String[] args) {
String start = "C:\\upLoad\\all.doc";
String over = "C:\\upLoad\\all.pdf";
try {
WordToPDF(start, over);
} catch (IOException e) {
e.printStackTrace();
}
}
}
- xdocreport
如果要用xdocreport的话,可直接参考这个github文章:https://github.com/yeokm1/docs-to-pdf-converter
总结:
优点 | 缺点 | |
---|---|---|
JobConverter + OpenOffice | 跨平台 | 需安装软件 |
xdocreport | 跨平台,不需安装软件 | 只支持doc,docx,ppt,pptx,odt转pdf |
参考文章:https://blog.csdn.net/csdnFlyFun/article/details/79523262
文章如有什么问题,欢迎大佬们指正