资源简介
压缩包里有三个aspose的jar包和java文件 我的是web项目 里面jar齐全 没发现需要什么 但是如果运行报错,请根据缺包提示加入相应jar包,还有注意license.xml文件路径,亲测可用,有问题可以留言
代码片段和文件信息
package com.jhq.web.util;
import java.io.File;
import java.io.FileOutputStream;
import junit.framework.Test;
import com.aspose.words.Document;
import com.aspose.words.SaveFormat;
public class Word2Html {
public static boolean getLicense() {
boolean result = false;
try {
java.io.InputStream is = Test.class.getClassLoader().getResourceAsStream(“license.xml“); // wordlicense.xml应放在..\WebRoot\WEB-INF\classes路径下
com.aspose.words.License aposeLic = new com.aspose.words.License();
aposeLic.setLicense(is);
result = true;
}
catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void word2pdf(String Address) {
if (!getLicense()) { // 验证License 若不验证则转化出的PDP文档会有水印产生
return;
}
try {
File file = new File(“D:/pdf1.pdf“); //新建一个空白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 相互转换 os.close();
}
catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
word2pdf(“D:/论文.doc“);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-26 13:33 word转pdf\
文件 6062936 2018-01-20 16:24 word转pdf\aspose-cells-8.5.2.jar
文件 8543532 2018-01-20 16:24 word转pdf\aspose-words-14.9.0-jdk16.jar
文件 2998 2018-01-20 16:24 word转pdf\aspose_license.jar
文件 584 2018-01-22 10:31 word转pdf\license.xm
文件 1609 2018-01-26 13:32 word转pdf\Word2Html.java
评论
共有 条评论