欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Springboot如何集成jodconverter做文檔轉(zhuǎn)換

 更新時(shí)間:2024年08月15日 10:18:39   作者:專注寫bug  
這篇文章主要介紹了Springboot如何集成jodconverter做文檔轉(zhuǎn)換問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

公司項(xiàng)目開發(fā)中,早期使用docx4j進(jìn)行word轉(zhuǎn)pdf,出現(xiàn)了很多格式紊亂、空格縮進(jìn)、字體間距變大等問題。

雖然針對(duì)空格縮進(jìn)等處理,采取全角模式,進(jìn)行了改善。但依舊還是會(huì)有很多解決不了的格式。

一直在找一種新的方式進(jìn)行替代,主要是:保證顯示格式。

jodconverter 簡介

這是一款利用操作系統(tǒng)中的office庫,實(shí)現(xiàn)文檔類型轉(zhuǎn)換的工具。目前支持很多格式間的互相轉(zhuǎn)換。

  • 這里不做太多的闡述,度娘、論壇等都有很多博客的說明。
  • 本次只是為了基本的測試與使用。

下載安裝 libreoffice

libreoffice 下載地址

根據(jù)電腦對(duì)應(yīng)的系統(tǒng),選擇指定系統(tǒng)版本的進(jìn)行安裝即可。

本次以windows進(jìn)行演示,后期會(huì)增加linux的安裝腳本。

代碼演示

1、創(chuàng)建springboot項(xiàng)目工程并引入依賴

本次測試代碼,結(jié)合docx模板數(shù)據(jù)填入的思想,進(jìn)行doc文件內(nèi)容填充,并將doc文件轉(zhuǎn)換pdf處理。

往期回顧:根據(jù)docx填充生成word文件,并導(dǎo)出pdf

所以需要導(dǎo)入以下依賴:

<!-- docx 模板填入與導(dǎo)出doc -->
<dependency>
    <groupId>com.deepoove</groupId>
    <artifactId>poi-tl</artifactId>
    <version>1.5.0</version>
</dependency>

<!-- libreoffice 進(jìn)行文件轉(zhuǎn)換 -->
<dependency>
    <groupId>org.jodconverter</groupId>
    <artifactId>jodconverter-spring-boot-starter</artifactId>
    <version>4.4.4</version>
</dependency>
<dependency>
    <groupId>org.jodconverter</groupId>
    <artifactId>jodconverter-local</artifactId>
    <version>4.4.4</version>
</dependency>

2、配置

除了增加對(duì)應(yīng)依賴文件之外,還需要增加application.properties文件的配置。

如下所示:

server.port=80

jodconverter.local.enabled=true
# libreOffice根目錄
jodconverter.local.office-home=C:/Program Files/LibreOffice
# 任務(wù)執(zhí)行的超時(shí)時(shí)間
jodconverter.local.task-execution-timeout=86400000
# 任務(wù)隊(duì)列的超時(shí)時(shí)間
jodconverter.local.task-queue-timeout=86400000
# 端口(線程)
jodconverter.local.port-numbers=2001,2002,2003
# 一個(gè)進(jìn)程的超時(shí)時(shí)間
jodconverter.local.process-timeout=86400000

3、準(zhǔn)備一個(gè)docx模板

并放置于resources/templates_report下,如下所示:

4、編寫測試代碼

如下所示:

package cn.xj.controller;

import com.deepoove.poi.XWPFTemplate;
import lombok.extern.slf4j.Slf4j;
import org.jodconverter.core.DocumentConverter;
import org.jodconverter.core.document.DefaultDocumentFormatRegistry;
import org.jodconverter.core.office.OfficeException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;

@Slf4j
@RestController
@RequestMapping("/pdf")
public class TestController {

    @Autowired
    private DocumentConverter documentConverter;

    @RequestMapping("/test")
    public void test() throws IOException {
        Map<String, Object> params = new HashMap<>();
        params.put("username","xiangjiao1");
        params.put("password","******");
        params.put("age",22);
        params.put("email","專注寫bug測試中文");
        Resource resource = new ClassPathResource("templates_report/001.docx");
        File file = resource.getFile();

        // 數(shù)據(jù)填充
        XWPFTemplate template = XWPFTemplate.compile(file).render(params);

        String docOutPath = System.getProperty("user.dir")+File.separator+"springboot-poi"+File.separator+"pdf"+File.separator+System.currentTimeMillis()+ ".doc";
        OutputStream outputStream = new FileOutputStream(docOutPath);
        template.write(outputStream);

        try {
            String pdfOutPath = System.getProperty("user.dir")+File.separator+"springboot-poi"+File.separator+"pdf"+File.separator+System.currentTimeMillis()+".pdf";
            documentConverter.convert(new File(docOutPath)).to(new File(pdfOutPath)).as(DefaultDocumentFormatRegistry.PDF).execute();
        } catch (OfficeException e) {
            log.error("文檔轉(zhuǎn)換異常:{}", e.getMessage());
        }
    }
}

運(yùn)行后的樣式

linux 環(huán)境下安裝 libreoffice

腳本如下所示:

#!/bin/bash
cd /tmp

install_redhat() {
   wget https://kkfileview.keking.cn/LibreOffice_7.3.7_Linux_x86-64_rpm.tar.gz -cO LibreOffice_7_rpm.tar.gz && tar -zxf /tmp/LibreOffice_7_rpm.tar.gz && cd /tmp/LibreOffice_7.3.7.2_Linux_x86-64_rpm/RPMS
   echo $?
   if [ $? -eq 0 ];then
     yum install -y libSM.x86_64 libXrender.x86_64  libXext.x86_64
     yum groupinstall -y  "X Window System"
     yum localinstall -y *.rpm
     echo 'install finshed...'
   else
     echo 'download package error...'
   fi
}

install_ubuntu() {
   wget  https://kkfileview.keking.cn/LibreOffice_7.3.7_Linux_x86-64_deb.tar.gz  -cO LibreOffice_7_deb.tar.gz && tar -zxf /tmp/LibreOffice_7_deb.tar.gz && cd /tmp/LibreOffice_7.3.7.2_Linux_x86-64_deb/DEBS
   echo $?
 if [ $? -eq 0 ];then
     apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1
     dpkg -i *.deb
     echo 'install finshed...'
  else
    echo 'download package error...'
 fi
}


if [ -f "/etc/redhat-release" ]; then
  yum install -y wget
  install_redhat
else
  apt-get install -y wget
  install_ubuntu
fi

總結(jié)

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • IDEA如何加載resources文件夾下文件相對(duì)路徑

    IDEA如何加載resources文件夾下文件相對(duì)路徑

    這篇文章主要介紹了IDEA如何加載resources文件夾下文件相對(duì)路徑問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-12-12
  • Spring Cache的使用示例詳解

    Spring Cache的使用示例詳解

    SpringCache是構(gòu)建在SpringContext基礎(chǔ)上的緩存實(shí)現(xiàn),提供了多種緩存注解,如@Cachable、@CacheEvict、@CachePut等,本文通過實(shí)例代碼介紹了Spring Cache的使用,感興趣的朋友一起看看吧
    2025-01-01
  • SpringBoot動(dòng)態(tài)生成接口實(shí)現(xiàn)流程示例講解

    SpringBoot動(dòng)態(tài)生成接口實(shí)現(xiàn)流程示例講解

    最近遇到一個(gè)需求,需要在程序運(yùn)行過程中,可以動(dòng)態(tài)新增接口,自定義接口參數(shù)名稱,基本類型,以及請(qǐng)求方法,請(qǐng)求頭等等。通過幾天的研究,找到了我需要的解決方案
    2023-01-01
  • BufferedInputStream(緩沖輸入流)詳解_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理

    BufferedInputStream(緩沖輸入流)詳解_動(dòng)力節(jié)點(diǎn)Java學(xué)院整理

    這篇文章主要為大家詳細(xì)介紹了BufferedInputStream緩沖輸入流的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-05-05
  • 一篇文章帶你理解Java的SPI機(jī)制(圖文并茂)

    一篇文章帶你理解Java的SPI機(jī)制(圖文并茂)

    本文詳細(xì)介紹了Java的SPI機(jī)制,包括其定義、用途和實(shí)現(xiàn)方式,SPI(ServiceProviderInterface)是一種服務(wù)發(fā)現(xiàn)機(jī)制,用于實(shí)現(xiàn)框架或庫的擴(kuò)展點(diǎn),文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2024-10-10
  • 深入了解SpringAOP中的jdk動(dòng)態(tài)代理與CGlib

    深入了解SpringAOP中的jdk動(dòng)態(tài)代理與CGlib

    這篇文章主要介紹了深入了解SpringAOP中的jdk動(dòng)態(tài)代理與CGlib,一般我們編寫程序的思想是縱向的,也就是一個(gè)方法代碼從該方法第一行開始往下一步一步走,直到走完最后一行代碼,也就是說很多業(yè)務(wù)都需要的比如用戶鑒權(quán),資源釋放等,需要的朋友可以參考下
    2023-12-12
  • SpringBoot配置文件、多環(huán)境配置、讀取配置的4種實(shí)現(xiàn)方式

    SpringBoot配置文件、多環(huán)境配置、讀取配置的4種實(shí)現(xiàn)方式

    SpringBoot支持多種配置文件位置和格式,其中application.properties和application.yml是默認(rèn)加載的文件,配置文件可以根據(jù)環(huán)境通過spring.profiles.active屬性進(jìn)行區(qū)分,命令行參數(shù)具有最高優(yōu)先級(jí),可覆蓋其他所有配置
    2024-09-09
  • Java如何基于poi操作Wold工具類

    Java如何基于poi操作Wold工具類

    這篇文章主要介紹了Java如何基于poi操作Wold工具類,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-03-03
  • SpringCloud OpenFeign自定義結(jié)果解碼器方式

    SpringCloud OpenFeign自定義結(jié)果解碼器方式

    這篇文章主要介紹了SpringCloud OpenFeign自定義結(jié)果解碼器方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-09-09
  • Java的NIO之通道channel詳解

    Java的NIO之通道channel詳解

    這篇文章主要介紹了Java的NIO之通道channel詳解,通道channel由java.nio.channels 包定義的,Channel 表示IO源與目標(biāo)打開的連接,Channel類類似于傳統(tǒng)的"流",只不過Channel本身不能直接訪問數(shù)據(jù),Channel只能與Buffer進(jìn)行交互,需要的朋友可以參考下
    2023-10-10

最新評(píng)論