- PDFBox - Adding Rectangles
- PDFBox - Converting PDF To Image
- Merging Multiple PDF Documents
- PDFBox - Splitting a PDF Document
- JavaScript in PDF Document
- Encrypting a PDF Document
- PDFBox - Inserting Image
- PDFBox - Reading Text
- PDFBox - Adding Multiple Lines
- PDFBox - Adding Text
- PDFBox - Document Properties
- PDFBox - Removing Pages
- PDFBox - Loading a Document
- PDFBox - Adding Pages
- PDFBox - Creating a PDF Document
- PDFBox - Environment
- PDFBox - Overview
- PDFBox - Home
PDFBox Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
PDFBox - Merging Multiple PDF Documents
In the previous chapter, we have seen how to sppt a given PDF document into multiple documents. Let us now learn how to merge multiple PDF documents as a single document.
Merging Multiple PDF Documents
You can merge multiple PDF documents into a single PDF document using the class named PDFMergerUtipty class, this class provides methods to merge two or more PDF documents in to a single PDF document.
Following are the steps to merge multiple PDF documents.
Step 1: Instantiating the PDFMergerUtipty class
Instantiate the merge utipty class as shown below.
PDFMergerUtipty PDFmerger = new PDFMergerUtipty();
Step 2: Setting the destination file
Set the destination files using the setDestinationFileName() method as shown below.
PDFmerger.setDestinationFileName("C:/PdfBox_Examples/data1/merged.pdf");
Step 3: Setting the source files
Set the source files using the addSource() method as shown below.
File file = new File("path of the document") PDFmerger.addSource(file);
Step 4: Merging the documents
Merge the documents using the mergeDocuments() method of the PDFmerger class as shown below.
PDFmerger.mergeDocuments();
Example
Suppose, we have two PDF documents — sample1.pdf and sample2.pdf, in the path C:PdfBox_Examples as shown below.
This example demonstrates how to merge the above PDF documents. Here, we will merge the PDF documents named sample1.pdf and sample2.pdf in to a single PDF document merged.pdf. Save this code in a file with name MergePDFs.java.
import org.apache.pdfbox.multipdf.PDFMergerUtipty; import java.io.File; import java.io.IOException; pubpc class MergePDFs { pubpc static void main(String[] args) throws IOException { File file1 = new File("C:\EXAMPLES\Demo1.pdf"); File file2 = new File("C:\EXAMPLES\Demo2.pdf"); //Instantiating PDFMergerUtipty class PDFMergerUtipty PDFmerger = new PDFMergerUtipty(); //Setting the destination file PDFmerger.setDestinationFileName("C:\Examples\merged.pdf"); //adding the source files PDFmerger.addSource(file1); PDFmerger.addSource(file2); //Merging the two documents PDFmerger.mergeDocuments(); System.out.println("Documents merged"); } }
Compile and execute the saved Java file from the command prompt using the following commands.
javac MergePDFs.java java MergePDFs
Upon execution, the above program encrypts the given PDF document displaying the following message.
Documents merged
If you verify the given path, you can observe that a PDF document with name merged.pdf is created and this contains the pages of both the source documents as shown below.
Advertisements