aspose将word转为pdf

aspose文件转换功能非常方便,文件也不会出现乱码,内容丢失的情况。

相关jar和license.xml下载地址:https://download.csdn.net/download/qq_31674229/31839253

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

import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
import org.springframework.util.StringUtils;


/**
 * @author qianshijiang
 * @since 2021-10-12
 */
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 = Word2PdfUtil.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;
    }

    /**
     * 将word转换为pdf
     * @param inPath word存储路径
     * @param outPath pdf保存路径
     */
    public static void doc2pdf(String inPath, String outPath) {
        if (!getLicense() || StringUtils.isEmpty(inPath) || StringUtils.isEmpty(outPath)) { // 验证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();
        }
    }


    /**
     * 将word转为pdf
     * @param input 需要转换的word
     * @param saveFile 保存pdf文件
     */
    public static void doc2pdf(InputStream input, File saveFile) {
        if (!getLicense() || input==null || saveFile==null) { // 验证License 若不验证则转化出的pdf文档会有水印产生
            return;
        }
        try {
            long old = System.currentTimeMillis();
            FileOutputStream os = new FileOutputStream(saveFile);
            Document doc = new Document(input); // 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();
        }
    }
    
    
    
}

你可能感兴趣的:(word转pdf,word在线预览,文件在线预览,java,aspose)