• 大小: 14.91MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-07-02
  • 语言: Java
  • 标签: word转pdf  aspose  word  

资源简介

word转pdf两种方法的jar包和代码,工具方法,破解认证资源,

资源截图

代码片段和文件信息

package com.shzqoa.util;

import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
 
import org.aspectj.weaver.ast.Test;
 
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;


/**
 * @author Administrator
 * @version $Id$
 * @since
 * @see
 */
public class WordPdfUtil {
 //此插件不需要安装office服务但是此插件加密,如不注册会有水印
//    public static void main(String[] args) {
//        //doc2pdf(“C:/Users/lss/Desktop/test.doc“);
//     doc2pdf(“F:\\doc\\a.doc““F:\\doc\\a.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(outPath+“生成共耗时:“ + ((now - old) / 1000.0) + “秒“); // 转化用时
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    public static void savedocx(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.DOCX);// 全面支持DOC DOCX OOxml RTF HTML OpenDocument PDF
                                       // EPUB XPS SWF 相互转换
          long now = System.currentTimeMillis();
          System.out.println(outPath+“生成共耗时:“ + ((now - old) / 1000.0) + “秒“); // 转化用时
      } catch (Exception e) {
          e.printStackTrace();
      }
  }
    
}

评论

共有 条评论