Return to Snippet

Revision: 72665
at October 12, 2017 22:20 by markt22


Initial Code
/**
 * @param args the command line arguments
 * @throws java.io.IOException
 */
public static void main(String[] args) throws IOException {
    PDFMergerUtility merger = new PDFMergerUtility();

    merger.setDestinationFileName("");

    merger.addSource(new File(""));
    merger.addSource(new File(""));

    merger.mergeDocuments();
}

Initial URL


Initial Description
Creates a new PDF by merging two existing PDF's

Initial Title
PDFBox: Merging two documents

Initial Tags


Initial Language
Java