栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

springboot中Word转PDF技巧

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

springboot中Word转PDF技巧

参考:

记一次文件从Word转为PDF(documents4j和aspose)_青语的博客-CSDN博客

Java实现windows,linux服务器word,excel转为PDF;aspose-words,documents4j_爱是与世界平行-CSDN博客

Aspose.Words 新版本发布【附下载】_weixin_34032779的博客-CSDN博客

aspose-words

        
        
            com.aspose
            aspose-words
            15.8.0
        

documents4j

        
        
package org.jeecg.modules.demo.utils;

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

import java.io.*;
import org.springframework.core.io.ClassPathResource;

public class WordPdfUtils {

    public static boolean getLicense() {
        boolean result = false;
        try {
            ClassPathResource classPathResource = new ClassPathResource("license.xml");
            License aposeLic = new License();
            aposeLic.setLicense(classPathResource.getInputStream());
            result = true;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }

    public static boolean doc2pdf(InputStream inputStream, OutputStream outputStream) {
        if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
            return false;
        }
        try {
            document doc = new document(inputStream);
            doc.save(outputStream, SaveFormat.PDF);
        } catch (Exception e) {

        }
        return true;
    }
}

resources下license.xml可以去除水印

内容:



    
        
            Aspose.Total for Java
            Aspose.Words for Java
        
        Enterprise
        20991231
        20991231
        8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7
    
    sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/632601.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号