Java使用aopse实现word转换pdf

Posted 不允许摆烂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java使用aopse实现word转换pdf相关的知识,希望对你有一定的参考价值。

Java使用aopse实现word转换pdf

需要引用aspose包,引入操作我写了一个博客,地址如下

https://blog.csdn.net/weixin_46713508/article/details/125495770?spm=1001.2014.3001.5502

直接上代码了 这里应该用流输出,以后完善

    public boolean wordConvertPdf(MultipartFile file, String outPath) throws Exception 
        // 验证License
        if (!WordConvertUtil.getLicense()) 
            return false;
        
        try 
            // 原始word路径
            Document doc = new Document(file.getInputStream());
            // 输出路径
            File pdfFile = new File(outPath);
            // 文件输出流
            FileOutputStream fileOS = new FileOutputStream(pdfFile);
            doc.save(fileOS, SaveFormat.PDF);
            fileOS.close();
            return true;
         catch (Exception e) 
            e.printStackTrace();
            return false;
        
    

运行如下

以上是关于Java使用aopse实现word转换pdf的主要内容,如果未能解决你的问题,请参考以下文章

使用JAVA将WORD转换为PDF的问题!

如何用纯java代码实现word转pdf

用java 实现 word、jpg转PDF

java中poi如何将word文档转换成pdf

java实现word转pdf

在linux环境下,java怎么实现从word格式转换为pdf格式