libreoffice + jodconverter + Springboot 整合使用将Word转PDF

5 篇文章 0 订阅
1 篇文章 0 订阅

libreoffice + jodconverter + Springboot 整合使用将Word转PDF

第一步 安装Libreoffice

https://jingyan.baidu.com/article/91f5db1b38d69b1c7f05e3dc.html

第二步 maven依赖
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-core</artifactId>
            <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-local</artifactId>
            <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-spring-boot-starter</artifactId>
            <version>4.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.libreoffice</groupId>
            <artifactId>ridl</artifactId>
            <version>5.4.2</version>
        </dependency>

第三步 配置DocumentConverter

yml配置
jodconverter:
  local:
    enabled: true
    # 设置LibreOffice主目录
    #    office-home: /opt/libreoffice6.4
    office-home: C:/Program Files/LibreOffice
    # 开启多个LibreOffice进程,每个端口对应一个进程
    portNumbers: 9080,9081,9089
    # LibreOffice进程重启前的最大进程数
    maxTasksPerProcess: 100
或者使用@Bean注解的方式注册
    @Bean(
            initMethod = "start",
            destroyMethod = "stop"
    )
    public OfficeManager officeManager(){
        String os = System.getProperty("os.name").toLowerCase();
        return LocalOfficeManager.builder()
                .officeHome(os.contains("windows") ? FileConst.LIBREOFFICE_PATH_WINDOWS :FileConst.LIBREOFFICE_PATH_LINUX)
                .portNumbers(9080,9081,9089)
                .maxTasksPerProcess(100)
                .build();
    }

    @Bean
    @ConditionalOnMissingBean
    @ConditionalOnBean({OfficeManager.class})
    public DocumentConverter jodConverter(OfficeManager officeManager) {
        return LocalConverter.make(officeManager);
        //return null;
    }

第四步 使用DocumentConverter

使用@Autowire注入 documentConverter

    @Autowired
    private DocumentConverter documentConverter;

	#使用流的方式转换PDF
	documentConverter.convert(inputStream)
	                        .as(fileExtension.compareToIgnoreCase(DefaultDocumentFormatRegistry.DOC.getExtension()) == 0 ? DefaultDocumentFormatRegistry.DOC : DefaultDocumentFormatRegistry.DOCX)
	                        .to(outputStream)
	                        .as(DefaultDocumentFormatRegistry.PDF)
	                        .execute();
	#使用文件方式转换成PDF
	            documentConverter
                    .convert(oldFile)
                    .to(file)
                    .execute();
评论 17
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值