Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to merge many PDF files into one using PDFBox and this is what I've done:

PDDocument document = new PDDocument();
for (String pdfFile: pdfFiles) {
    PDDocument part = PDDocument.load(pdfFile);
    List<PDPage> list = part.getDocumentCatalog().getAllPages();
    for (PDPage page: list) {
        document.addPage(page);
    }
    part.close();
}
document.save("merged.pdf");
document.close();

Where pdfFiles is an ArrayList<String> containing all the PDF files.

When I'm running the above, I'm always getting:

org.apache.pdfbox.exceptions.COSVisitorException: Bad file descriptor

Am I doing something wrong? Is there any other way of doing it?

share|improve this question
Somebody pointed out iText [java-x.blogspot.com/2006/11/merge-pdf-files-with-itext.html] and then deleted the answer. It worked and thanks for that. – Lipis Aug 27 '10 at 15:20

2 Answers

up vote 8 down vote accepted

A quick google and it looks like you need to keep the PDFs to be merged open until after you have saved and closed the combined PDF.

share|improve this answer
1  
Even though the post was two years old, this solved the problem. You have to keep them open! – Lipis Aug 27 '10 at 15:28

Why not use the PDFMergerUtility of pdfbox?

PDFMergerUtility ut = new PDFMergerUtility();
ut.addSource(...);
ut.addSource(...);
ut.addSource(...);
ut.setDestinationFileName(...);
ut.mergeDocuments();
share|improve this answer
Also works, but I was using the PDFBox for creating PDF as well. – Lipis Feb 2 '11 at 17:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.