
- Example - Home
- Example - Environment
- Example - Strings
- Example - Arrays
- Example - Date & Time
- Example - Methods
- Example - Files
- Example - Directories
- Example - Exceptions
- Example - Data Structure
- Example - Collections
- Example - Networking
- Example - Threading
- Example - Applets
- Example - Simple GUI
- Example - JDBC
- Example - Regular Exp
- Example - Apache PDF Box
- Example - Apache POI PPT
- Example - Apache POI Excel
- Example - Apache POI Word
- Example - OpenCV
- Example - Apache Tika
- Example - iText
- Java Useful Resources
- Java - Quick Guide
- Java - Useful Resources
How to split a PDF in to many using Java
Problem Description
How to split a PDF in to many using Java.
Solution
Following is an example program to split a PDF in to many using Java.
import org.apache.pdfbox.multipdf.Splitter; import org.apache.pdfbox.pdmodel.PDDocument; import java.io.File; import java.io.IOException; import java.util.List; import java.util.Iterator; public class SplittingPDF { public static void main(String[] args) throws IOException { //Loading an existing PDF document File file = new File("C:/pdfBox/splitpdf_IP.pdf"); PDDocument doc = PDDocument.load(file); //Instantiating Splitter class Splitter splitter = new Splitter(); //splitting the pages of a PDF document List<PDDocument> Pages = splitter.split(doc); //Creating an iterator Iterator<PDDocument> iterator = Pages.listIterator(); //Saving each page as an individual document int i = 1; while(iterator.hasNext()){ PDDocument pd = iterator.next(); pd.save("C:/pdfBox/splitOP"+ i++ +".pdf"); } System.out.println("PDF splitted"); } }
Input

Output


java_apache_pdf_box
Advertisements