从网上后找了很久,最后找到一个博主的方法参照做的,主要是jar给力了。。现在弄完回头找没找到那个连接 。。。所以自己总结下,以免以后用得到。这个我只做到了 word必须要保存到本地后再转换成PDF 存到服务器上。。后续那个大神做到了直接在IO流后转换 记得在下面贴下代码 或者给我个连接。。不胜感激!!!
。。。
1.首先要找到aspose-words的jar包。我这里用的版本是aspose-words-15.8.0-jdk16,下面是下载链接:
https://download.csdn.net/download/qq_32734273/10804746 (我找到的都很贵啊,所以设置了1分默认的。。0.0)
2.我所做的开发环境为ssm+maven框架下;
3.必须要吧jar放到maven里面导入。我本地操作导入后报错,具体什么原因没搞懂,改成maven导入后好了;
下面为我的代码:
package com.renbo.utils;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import org.aspectj.weaver.ast.Test;
//引入aspose-words-15.8.0-jdk16.jar包
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
/**
*
* @ClassName: Doc2Pdf
* @Description: word转PDF
* @author yjs
* @date 2018年11月24日 下午1:59:28
* @version V1.0.1
*
*/
public class Doc2Pdf {
/** * 验证License * @return boolean */
public static boolean getLicense() {
boolean result = false;
try {
// license.xml 如果不知道应该放在哪个路径,就在控制台打印一下,然后去放就好啦
//我是放在别的地方的下面有图片;
System.out.println(Doc2Pdf.class.getClassLoader().getResource("").getPath());
InputStream is = Test.class.getClassLoader().getResourceAsStream("license.xml");
License aposeLic = new License();
aposeLic.setLicense(is);
result = true;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void doc2pdf(String Address, String text) {
if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
return;
}
try {
long old = System.currentTimeMillis();
File file = new File(text); // 新建一个空白pdf文档
FileOutputStream os = new FileOutputStream(file);
Document doc = new Document(Address); // Address是将要被转化的word文档
doc.save(os, SaveFormat.PDF);// 全面支持DOC, DOCX, OOXML, RTF HTML,
// OpenDocument, PDF, EPUB, XPS, SWF
// 相互转换
long now = System.currentTimeMillis();
System.out.println("共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化用时
} catch (Exception e) {
e.printStackTrace();
}
}
}
在需要转换的文件方法里面添加如下:
Doc2Pdf.doc2pdf(word文件路径, pdf文件路径);// Word转PDF