You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pdfbox.apache.org by "Kishore Kumar (JIRA)" <ji...@apache.org> on 2015/06/17 19:56:01 UTC

[jira] [Commented] (PDFBOX-700) NullPointerException when trying to merge PDFs

    [ https://issues.apache.org/jira/browse/PDFBOX-700?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14590179#comment-14590179 ] 

Kishore Kumar commented on PDFBOX-700:
--------------------------------------

Hi,

We got the same exception with PDFBOX 1.8.9, Is this patch applied to SVN.

> NullPointerException when trying to merge PDFs
> ----------------------------------------------
>
>                 Key: PDFBOX-700
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-700
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Utilities
>    Affects Versions: 1.1.0
>         Environment: Windows Vista 32-bit, Java 1.5.0_06, PDFBox HEAD tag (revision 937101)
>            Reporter: Adam Nichols
>             Fix For: 1.2.0
>
>         Attachments: PDFBOX-700.patch, US_Constitutional_Ammendments.pdf, US_Constitutional_Ammendments_copy.pdf
>
>
> I was trying to use the PDFMergerUtility class to merge some PDFs.  Using the unmodified PDFBox source, I get a NullPointerException when I call mergeDocuments().  I made two different copies of the same file to make sure it wasn't caused by something like file access.  The file opens fine with Adobe Acrobat, and PDFBox can load the document with no problem, so it doesn't seem to be a corrupt PDF in this case.  I'm not familiar with the PDOutlineNode class, so I'm not sure where to go from here.  I will attach the PDF I'm using to this bug report.  If there's anything else I can provide let me know.
> Code:
> public static void main(String[] args) {
>         String inputFile0 = "C:\\US_Constitutional_Ammendments_copy.pdf";
>         String inputFile1 = "C:\\US_Constitutional_Ammendments.pdf";
>         String outputFile = "C:\\US_Constitutional_Ammendments_output.pdf";
>         try {
>             PDFMergerUtility pdfMergerUtil = new PDFMergerUtility();
>             pdfMergerUtil.setDestinationFileName(outputFile);
>             pdfMergerUtil.addSource(inputFile0);
>             pdfMergerUtil.addSource(inputFile1);
>             pdfMergerUtil.mergeDocuments();
>             System.out.println("Yay, nothing went wrong.");
>         } catch(Exception e) {
>             System.out.println("Oh no, something went wrong!");
>             e.printStackTrace();
>         }
>     }
> java.lang.NullPointerException
>         at org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineNode.setParent(PDOutlineNode.java:108)
>         at org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline.PDOutlineNode.appendChild(PDOutlineNode.java:118)
>         at org.apache.pdfbox.util.PDFMergerUtility.appendDocument(PDFMergerUtility.java:303)
>         at org.apache.pdfbox.util.PDFMergerUtility.mergeDocuments(PDFMergerUtility.java:193)
>         at com.xldynamics.common.MergeTest.main(MergeTest.java:35)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@pdfbox.apache.org
For additional commands, e-mail: dev-help@pdfbox.apache.org