word,txt 转 pdf,html实现在线预览功能

之前项目需要在线预览WORD文档,用到的是jacob,但是需要在服务器安装OFFICE才行,比较麻烦,最近项目里又有很多在线预览的功能,同事发现了个更强大的转换器,贼好用,废话不多说直接上代码:
import org.aspectj.weaver.ast.Test;
 
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
 
public class Word2PdfUtil {
 
    public static void main(String[] args) {
        Word2PdfUtil.doc2pdf("D://test.docx", "D://test.pdf");
    }
 
    public static boolean getLicense() {
        boolean result = false;
        try {
            InputStream is = Test.class.getClassLoader().getResourceAsStream("license.xml"); // license.xml应放在..\WebRoot\WEB-INF\classes路径下
            License aposeLic = new License();
            aposeLic.setLicense(is);
            result = true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
 
    public static void doc2pdf(String inPath, String outPath) {
        if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
            return;
        }
        try {
            long old = System.currentTimeMillis();
            File file = new File(outPath); // 新建一个空白pdf文档
            FileOutputStream os = new FileOutputStream(file);
            Document doc = new Document(inPath); // Address是将要被转化的word文档
            doc.save(os, SaveFormat.PDF);// 全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF,
                                         // EPUB, XPS, SWF 相互转换
            long now = System.currentTimeMillis();
            System.out.println("Word转换成功,共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化用时
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
}

将llicense.xml放在资源根目录下即可

亲测有效,希望对大家有效奥,jar包及破解文件下载:

https://download.csdn.net/download/little_pig_lxl/10693538

猜你喜欢

转载自blog.csdn.net/little_pig_lxl/article/details/82884806