• 大小: 9.12MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-16
  • 语言: Java
  • 标签: word  pdf  

资源简介

全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF, EPUB, XPS, SWF 相互转换 ,word转pdf已做测试很好用!

资源截图

代码片段和文件信息

package cpcns.utils;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;

import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;

public class Word2Pdf {

 public static void doc2pdf(String inPath String outPath) {  
        try {  
            long old = System.currentTimeMillis();
            //注册
            String path = new Word2Pdf().getClass().getResource(“/“).getPath();
path = path.substring(1);
path = path.replace(“/WEB-INF/classes/“ “/WEB-INF/license.xml“);

            InputStream is = new FileInputStream(path);  
        License aposeLic = new License();
        aposeLic.setLicense(is);
        
            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(“共耗时:“ + ((now - old) / 1000.0) + “秒“); // 转化用时  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
    }  

/**
 * 测试
 * @param args
 */
public static void main(String[] args) {
// TODO Auto-generated method stub
String filepath = “D:/word2pdf/1111.doc“;  
String outpath = “D:/word2pdf/1111.pdf“;   
     
doc2pdf(filepath outpath);
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1720  2018-04-18 11:37  word2pdf\Word2Pdf.java
     文件    10269481  2018-04-17 18:13  word2pdf\aspose-words-15.8.0-jdk16.jar
     文件         587  2018-04-18 11:37  word2pdf\license.xml
     目录           0  2018-04-18 16:09  word2pdf\

评论

共有 条评论