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

Java實現(xiàn)在Word模板指定位置添加二維碼并生成?PDF

 更新時間:2025年02月12日 09:04:47   作者:五行星辰  
在實際業(yè)務(wù)場景中,我們常常需要在?Word?模板的指定位置貼上二維碼,然后將其轉(zhuǎn)換為?PDF?電子憑證文檔,下面我們就來看看具體實現(xiàn)方法吧

在實際業(yè)務(wù)場景中,我們常常需要在 Word 模板的指定位置貼上二維碼,然后將其轉(zhuǎn)換為 PDF 電子憑證文檔。下面將詳細(xì)介紹如何使用 Java 完成這一任務(wù),我們會借助 Apache POI 處理 Word 文檔,ZXing 生成二維碼,以及 Docx4J 將 Word 文檔轉(zhuǎn)換為 PDF。

1. 引入依賴

如果你使用 Maven 管理項目,在 pom.xml 中添加以下依賴:

<dependencies>
    <!-- Apache POI 處理 Word 文檔 -->
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>5.2.3</version>
    </dependency>
    <!-- ZXing 生成二維碼 -->
    <dependency>
        <groupId>com.google.zxing</groupId>
        <artifactId>core</artifactId>
        <version>3.4.1</version>
    </dependency>
    <dependency>
        <groupId>com.google.zxing</groupId>
        <artifactId>javase</artifactId>
        <version>3.4.1</version>
    </dependency>
    <!-- Docx4J 將 Word 轉(zhuǎn)換為 PDF -->
    <dependency>
        <groupId>org.docx4j</groupId>
        <artifactId>docx4j-JAXB-Internal</artifactId>
        <version>11.4.9</version>
    </dependency>
    <dependency>
        <groupId>org.docx4j</groupId>
        <artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
        <version>11.4.9</version>
    </dependency>
    <dependency>
        <groupId>org.docx4j</groupId>
        <artifactId>docx4j</artifactId>
        <version>11.4.9</version>
    </dependency>
    <dependency>
        <groupId>org.docx4j</groupId>
        <artifactId>docx4j-export-fo</artifactId>
        <version>11.4.9</version>
    </dependency>
</dependencies>

2. 生成二維碼

使用 ZXing 庫生成二維碼的代碼如下:

import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.WriterException;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
 
import java.awt.image.BufferedImage;
import java.util.HashMap;
import java.util.Map;
 
public class QRCodeGenerator {
    public static BufferedImage generateQRCode(String text, int width, int height) throws WriterException {
        QRCodeWriter qrCodeWriter = new QRCodeWriter();
        Map<EncodeHintType, Object> hints = new HashMap<>();
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
        BitMatrix bitMatrix = qrCodeWriter.encode(text, BarcodeFormat.QR_CODE, width, height, hints);
        return MatrixToImageWriter.toBufferedImage(bitMatrix);
    }
}

3. 在 Word 模板指定位置插入二維碼

使用 Apache POI 在 Word 模板的指定位置插入二維碼,這里假設(shè)模板中使用特定占位符來標(biāo)記二維碼的插入位置。

import org.apache.poi.xwpf.usermodel.*;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.*;
 
public class WordQRCodeInserter {
    public static void insertQRCodeIntoWord(String templatePath, String outputPath, BufferedImage qrCodeImage, String placeholder) throws IOException {
        try (FileInputStream fis = new FileInputStream(templatePath);
             XWPFDocument document = new XWPFDocument(fis)) {
            for (XWPFParagraph paragraph : document.getParagraphs()) {
                for (XWPFRun run : paragraph.getRuns()) {
                    String text = run.getText(0);
                    if (text != null && text.contains(placeholder)) {
                        // 清除占位符文本
                        run.setText("", 0);
                        // 插入二維碼圖片
                        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
                        ImageIO.write(qrCodeImage, "png", byteArrayOutputStream);
                        byte[] imageBytes = byteArrayOutputStream.toByteArray();
                        int pictureType = XWPFDocument.PICTURE_TYPE_PNG;
                        int width = qrCodeImage.getWidth();
                        int height = qrCodeImage.getHeight();
                        paragraph.createRun().addPicture(new ByteArrayInputStream(imageBytes), pictureType, "qrcode.png", width * 20, height * 20);
                    }
                }
            }
            try (FileOutputStream fos = new FileOutputStream(outputPath)) {
                document.write(fos);
            }
        }
    }
}

4. 將 Word 文檔轉(zhuǎn)換為 PDF

使用 Docx4J 將插入二維碼后的 Word 文檔轉(zhuǎn)換為 PDF。

import org.docx4j.Docx4J;
import org.docx4j.convert.out.FOSettings;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
 
import java.io.*;
 
public class WordToPdfConverter {
    public static void convertWordToPdf(String wordPath, String pdfPath) throws Exception {
        WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new File(wordPath));
        FOSettings foSettings = Docx4J.createFOSettings();
        foSettings.setWmlPackage(wordMLPackage);
        try (OutputStream os = new FileOutputStream(pdfPath)) {
            Docx4J.toPDF(foSettings, os, Docx4J.FLAG_EXPORT_PREFER_XSL);
        }
    }
}

5. 主程序調(diào)用示例

import java.io.IOException;
 
import com.google.zxing.WriterException;
 
public class Main {
    public static void main(String[] args) {
        try {
            // 要生成二維碼的內(nèi)容
            String qrCodeContent = "https://www.example.com";
            // 生成二維碼圖片
            BufferedImage qrCodeImage = QRCodeGenerator.generateQRCode(qrCodeContent, 200, 200);
 
            // Word 模板文件路徑
            String templatePath = "path/to/your/template.docx";
            // 插入二維碼后的 Word 文件輸出路徑
            String wordOutputPath = "path/to/your/output.docx";
            // 最終生成的 PDF 文件輸出路徑
            String pdfOutputPath = "path/to/your/output.pdf";
            // Word 模板中的二維碼占位符
            String placeholder = "{QR_CODE}";
 
            // 在 Word 模板中插入二維碼
            WordQRCodeInserter.insertQRCodeIntoWord(templatePath, wordOutputPath, qrCodeImage, placeholder);
 
            // 將插入二維碼后的 Word 文檔轉(zhuǎn)換為 PDF
            WordToPdfConverter.convertWordToPdf(wordOutputPath, pdfOutputPath);
 
            System.out.println("PDF 電子憑證文檔生成成功!");
        } catch (WriterException | IOException | Exception e) {
            e.printStackTrace();
        }
    }
}

6. 代碼解釋

1.生成二維碼

QRCodeGenerator 類使用 ZXing 庫根據(jù)指定的文本內(nèi)容生成二維碼的 BufferedImage 對象。

2.在 Word 模板插入二維碼

WordQRCodeInserter 類遍歷 Word 文檔的段落和運行對象,查找包含占位符的文本,清除占位符文本后插入二維碼圖片。

3.Word 轉(zhuǎn) PDF

WordToPdfConverter 類使用 Docx4J 將插入二維碼后的 Word 文檔轉(zhuǎn)換為 PDF 文件。

4.主程序調(diào)用

在 Main 類的 main 方法中,依次調(diào)用生成二維碼、在 Word 模板插入二維碼、將 Word 轉(zhuǎn)換為 PDF 的方法,最終生成 PDF 電子憑證文檔。

7. 注意事項

確保 Word 模板文件和輸出文件的路徑正確,并且程序有讀寫權(quán)限。

可以根據(jù)需要調(diào)整二維碼的大小和占位符的內(nèi)容。

處理中文等非 ASCII 字符時,要確保字符編碼設(shè)置正確。

通過以上步驟,你就可以使用 Java 在 Word 模板指定位置貼上二維碼,并將其生成為 PDF 電子憑證文檔啦!

以上就是Java實現(xiàn)在Word模板指定位置添加二維碼并生成 PDF的詳細(xì)內(nèi)容,更多關(guān)于Java Word添加二維碼的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • java web如何解決瞬間高并發(fā)

    java web如何解決瞬間高并發(fā)

    這篇文章主要為大家詳細(xì)介紹了java web解決瞬間高并發(fā)的策略,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • Android 資源 id詳解及的動態(tài)獲取

    Android 資源 id詳解及的動態(tài)獲取

    這篇文章主要介紹了Android 資源 id詳解及的動態(tài)獲取的相關(guān)資料,需要的朋友可以參考下
    2016-12-12
  • 使用SpringBoot動態(tài)切換數(shù)據(jù)源的實現(xiàn)方式

    使用SpringBoot動態(tài)切換數(shù)據(jù)源的實現(xiàn)方式

    在我們企業(yè)項目開發(fā)的過程中,有的時候,一個項目需要在運行時,根據(jù)某種條件選擇使用哪個數(shù)據(jù)源,那么此時該怎么進行動態(tài)切換呢,本文給大家例舉一種常見的實現(xiàn)方式,文中有詳細(xì)的實現(xiàn)步驟,需要的朋友可以參考下
    2023-12-12
  • Eclipse內(nèi)置瀏覽器打開方法

    Eclipse內(nèi)置瀏覽器打開方法

    這篇文章主要介紹了Eclipse內(nèi)置瀏覽器打開方法,需要的朋友可以了解下。
    2017-09-09
  • SpringCloud開啟session共享并存儲到Redis的實現(xiàn)

    SpringCloud開啟session共享并存儲到Redis的實現(xiàn)

    這篇文章主要介紹了SpringCloud開啟session共享并存儲到Redis的實現(xiàn)方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-02-02
  • 詳解java中List中set方法和add方法的區(qū)別

    詳解java中List中set方法和add方法的區(qū)別

    本文主要介紹了詳解java中List中set方法和add方法的區(qū)別,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-08-08
  • java虛擬機多線程進階篇總結(jié)

    java虛擬機多線程進階篇總結(jié)

    在本篇內(nèi)容里小編給大家整理了關(guān)于java虛擬機多線程進階篇的相關(guān)知識點內(nèi)容,有興趣的朋友們跟著參考下。
    2019-06-06
  • 重新認(rèn)識Java中的ThreadLocal

    重新認(rèn)識Java中的ThreadLocal

    ThreadLocal是JDK包提供的,它提供線程本地變量,如果創(chuàng)建一個ThreadLocal變量,那么訪問這個變量的每個線程都會有這個變量的一個副本,在實際多線程操作的時候,操作的是自己本地內(nèi)存中的變量,從而規(guī)避了線程安全問題
    2021-05-05
  • IntelliJ IDEA 如何徹底刪除項目的步驟

    IntelliJ IDEA 如何徹底刪除項目的步驟

    本篇文章主要介紹了IntelliJ IDEA 如何徹底刪除項目的步驟,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-11-11
  • JavaWeb dbutils執(zhí)行sql命令并遍歷結(jié)果集時不能查到內(nèi)容的原因分析

    JavaWeb dbutils執(zhí)行sql命令并遍歷結(jié)果集時不能查到內(nèi)容的原因分析

    這篇文章主要介紹了JavaWeb dbutils執(zhí)行sql命令并遍歷結(jié)果集時不能查到內(nèi)容的原因分析及簡單處理方法,文中給大家介紹了javaweb中dbutils的使用,需要的朋友可以參考下
    2017-12-12

最新評論