合併pdf

来源:http://www.cnblogs.com/liudongdong666666/archive/2017/11/09/7811635.html
-Advertisement-
Play Games

合併pdf pom.xml添加Jar依賴 <!-- pdf處理jar依賴 start --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.12</version ...


合併pdf
    pom.xml添加Jar依賴
        <!-- pdf處理jar依賴 start -->
        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itextpdf</artifactId>
            <version>5.5.12</version>
        </dependency>
        <!-- pdf處理jar依賴 end -->

        <!-- pdf處理jar包依賴 start -->
        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itext-asian</artifactId>
            <version>5.2.0</version>
        </dependency>
        <dependency>
            <groupId>com.lowagie</groupId>
            <artifactId>itext</artifactId>
            <version>4.2.1</version>
        </dependency>
        <!-- pdf處理jar包依賴 end -->    


package com.bjpowernode.p2p.admin.pdf;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import com.itextpdf.text.Document;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfWriter;

/**
 * PDF文件合併操作
 *
 * @author ldd
 *
 */
public class PDFMergeUtil {
    
    /**Log4j2日誌記錄器*/
    private static final Logger logger = LogManager.getLogger(PDFMergeUtil.class);
    
    /**
     * PDF文件合併操作
     *
     * @param streamOfPDFFiles
     * @param outputStream
     * @param paginate
     */
    public static void mergePDFs(List<String> inputFileList, String outputFile, boolean paginate) {
        
        logger.info("pdf文件合併......");
        //創建新的pdf文檔
        Document document = new Document();
        
        PdfWriter writer = null;
        FileInputStream fis = null;
        FileOutputStream fos = null;
        
        try {
            //創建讀取Pdf 文件對象
            List<PdfReader> readers = new ArrayList<PdfReader>();
            
            for (String filePath : inputFileList) {
                fis = new FileInputStream(filePath);
                
                PdfReader pdfReader = new PdfReader(fis);
                readers.add(pdfReader);
            }
            //讀取pdf文件
            fos = new FileOutputStream(outputFile);
            //生成新的文檔
            writer = PdfWriter.getInstance(document, fos);
            //打開文檔
            document.open();
            //設置字體
            BaseFont bf = BaseFont.createFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
            PdfContentByte cb = writer.getDirectContent();

            PdfImportedPage page = null;
            int currentPageNumber = 0;
            int pageOfCurrentReaderPDF = 0;
            
            Iterator<PdfReader> iteratorPDFReader = readers.iterator();
            //依次讀取pdf
            while (iteratorPDFReader.hasNext()) {
                
                PdfReader pdfReader = iteratorPDFReader.next();
                
                // Create a new page in the target for each source page.
                while (pageOfCurrentReaderPDF < pdfReader.getNumberOfPages()) {
                    document.newPage();
                    pageOfCurrentReaderPDF++;
                    currentPageNumber++; //創建當前頁碼
                    page = writer.getImportedPage(pdfReader, pageOfCurrentReaderPDF);
                    cb.addTemplate(page, 0, 0);
                    
                    // Code for pagination.
                    if (paginate) {
                        cb.beginText();
                        cb.setFontAndSize(bf, 9);//字體
                        cb.showTextAligned(PdfContentByte.ALIGN_CENTER, String.valueOf(currentPageNumber), 290, 50, 0);
                        cb.endText();
                    }
                }
                pageOfCurrentReaderPDF = 0;
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (document.isOpen()) {
                    document.close();
                }
                if (null != fis) {
                    fis.close();
                }
                if (null != fos) {
                    fos.close();
                }
                if (null != writer) {
                    writer.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * 文件合併測試
     *
     * @param args
     * @throws Throwable
     */
    public static void main(String[] args) throws Throwable {
        List<String> inputFileList = new ArrayList<String>();
        inputFileList.add("C:\\dev\\eclipse\\workspace\\p2p-admin\\src\\main\\resources\\sb_loan_contract_borrow.pdf");
        inputFileList.add("C:\\dev\\eclipse\\workspace\\p2p-admin\\src\\main\\resources\\sb_loan_contract_borrow.pdf");
        String outputFile = "C:\\dev\\eclipse\\workspace\\p2p-admin\\src\\main\\resources\\sb_loan_contract_borrow_merge.pdf";
        //合併PDF
        PDFMergeUtil.mergePDFs(inputFileList, outputFile, true);
    }
}





-------------------------------------------華麗的分割線----------------------------------------------------------
            List<String> pdfList = new ArrayList<String>();
            pdfList.add(outPutFileName);//公司簽章pdf
            pdfList.add(outFile_table);//表格pdf
            
            //pdf文件合併
            PDFMergeUtil.mergePDFs(pdfList, outFile_final, true);
            
            







您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在正式進入Spring AOP的源碼實現前,我們需要準備一定的基礎也就是面向切麵編程的核心——動態代理。 動態代理實際上也是一種結構型的設計模式,JDK中已經為我們準備好了這種設計模式,不過這種JDK為我們提供的動態代理有2個缺點: 鑒於以上2個缺點,於是就出現了第二種動態代理技術——CGLIB(C ...
  • 寫自己的游戲引擎-魂鬥羅源代碼詳解-1_環境搭建與載入項目 上學期我們大一的c++程式設計基礎課需要寫一個課設,我看了題庫,都沒有特別感興趣的。所以我自己選了用c++寫魂鬥羅。這個游戲從main開始,自己建了迴圈,自己寫了框架,也花費了我一個假期的時間。現在想分享出來,併在後續的博客裡面詳細分析思路 ...
  • ——略談Java web軟體如何提供二次開發介面 接手公司的一個Java web軟體產品,該軟體採用傳統的dwr框架。dwr框架相當於一個中間層,使得javascript能夠識別Java類對象,進而能夠調用Java類對象的方法。該軟體要為項目部同事提供二次開發包。 這種方式界面層代碼和邏輯實現代碼混 ...
  • 迭代器 迭代是Python最強大的功能之一,是訪問集合元素的一種方式。。 迭代器對象是一個可以記住遍歷的位置的對象。 迭代器對象從集合的第一個元素開始訪問,直到所有的元素被訪問完結束。迭代器只能往前不會後退。 迭代器有兩個基本的方法:iter() 和 next()。 字元串,列表或元組對象都可用於創 ...
  • 一、新來同事rose2 建用戶名 [root@localhost ~]# useradd rose2 正在創建信箱文件: 文件已存在 建用戶ID [root@localhost ~]# id rose2 uid=3244(rose2) gid=3244(rose2) 組=3244(rose2) 建密 ...
  • 先分享幾個鏈接:(POI的中文API,別人總結的拿來用特別方便) http://blog.csdn.net/m0_37505412/article/details/71109503 https://www.cnblogs.com/fqfanqi/p/6172223.html 我在項目中做這個功能的時 ...
  • 《Head First 設計模式》學習中 裝飾者模式 動態的將責任附加到對象上,若要擴展功能,裝飾者提供了比繼承更有彈性的替代方案 類圖 參與者 1.Component(被裝飾對象的基類) 定義一個對象介面,可以給這些對象動態地添加職責。 2.ConcreteComponent(具體被裝飾對象) 定 ...
  • 恢復內容開始 思路:從倒數第二行開始,每個節點的值加上它下一層的左右節點的最大值,然後逐層向上遍歷,直到頂點,迴圈結束,輸出頂點內容 恢復內容結束 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...