Java 使用Acrofields展平表单期间itextpdf中的NullPointerException

Java 使用Acrofields展平表单期间itextpdf中的NullPointerException,java,itextpdf,acrofields,Java,Itextpdf,Acrofields,我有一个六页的PDF,每页都有一些acrofields。 我已使用以下代码删除了第4页和第5页: List<Integer> pagesToKeep = Arrays.asList(new int[]{ 1, 2, 3 }); pdfReader.selectPages(pagesToKeep); 我得到了NullPointerException。 原因:在表单展开时,页面上定义的Acro字段无法定位页码,因为第6页已不存在 异常跟踪: java.lang.NullPointerE

我有一个六页的PDF,每页都有一些acrofields。 我已使用以下代码删除了第4页和第5页:

List<Integer> pagesToKeep = Arrays.asList(new int[]{ 1, 2, 3 });
pdfReader.selectPages(pagesToKeep);
我得到了NullPointerException。 原因:在表单展开时,页面上定义的Acro字段无法定位页码,因为第6页已不存在

异常跟踪:

java.lang.NullPointerException
    at com.itextpdf.text.pdf.PdfStamperImp.flatFields(PdfStamperImp.java:1019)
    at com.itextpdf.text.pdf.PdfStamperImp.close(PdfStamperImp.java:227)
    at com.itextpdf.text.pdf.PdfStamper.close(PdfStamper.java:231)
    at com.ally.bankapi.service.impl.DocumentServiceImpl.generateDocument(DocumentServiceImpl.java:1272)
    at com.ally.bankapi.service.impl.DocumentServiceImplTest.testGenerateDocumentSuccess(DocumentServiceImplTest.java:111)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.mockito.internal.runners.JUnit45AndHigherRunnerImpl.run(JUnit45AndHigherRunnerImpl.java:37)
    at org.mockito.runners.MockitoJUnitRunner.run(MockitoJUnitRunner.java:62)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

我找到了一个解决方法,不是从当前PDF中删除页面,而是使用PdfCopy将所选页面复制到新PDF中,如下面的注释所示:–Narendra Apr 6'16 18:18

pdfStamper.setFormFlattening(true);
pdfStamper.close();
pdfReader.close();
//Create a new pdfReader which reads the existing baos
pdfReader = new PdfReader(baos.toByteArray());
Document document = new com.itextpdf.text.Document();
PdfCopy copy = null;
ByteArrayOutputStream copyBaos = new ByteArrayOutputStream();
//Create Copy of the same.
copy = new PdfCopy(document, copyBaos);
document.open();
// Keep only selected pages
copy.addDocument(pdfReader, pagesToKeep);

我找到了一个解决方法,不是从当前PDF中删除页面,而是使用PdfCopy将所选页面复制到新PDF中,如下面的注释所示:–Narendra Apr 6'16 18:18

pdfStamper.setFormFlattening(true);
pdfStamper.close();
pdfReader.close();
//Create a new pdfReader which reads the existing baos
pdfReader = new PdfReader(baos.toByteArray());
Document document = new com.itextpdf.text.Document();
PdfCopy copy = null;
ByteArrayOutputStream copyBaos = new ByteArrayOutputStream();
//Create Copy of the same.
copy = new PdfCopy(document, copyBaos);
document.open();
// Keep only selected pages
copy.addDocument(pdfReader, pagesToKeep);

您需要使用
new
命令或使用
listpagestokeep=Arrays.asList(newint[]{1,2,3})创建一个对象我的问题是删除中间页面后的表单扁平化。pagesToKeep我是通过其他逻辑推导出来的,这里只是告诉大家我只保留了一些选定的页面。最后一页上的Acrofields在表单展平时会导致空指针。正如您所描述的,这可能只是一个bug。但是这个问题有解决方法吗?我找到了解决方法,而不是从当前PDF中删除页面,使用PdfCopy在新PDF中复制所选页面,如下面的注释所示:您需要使用
new
命令或使用
List pagesToKeep=Arrays.asList(new int[]{1,2,3})创建一个对象我的问题是删除中间页面后的表单扁平化。pagesToKeep我是通过其他逻辑推导出来的,这里只是告诉大家我只保留了一些选定的页面。最后一页上的Acrofields在表单展平时会导致空指针。正如您所描述的,这可能只是一个bug。但是否有解决此问题的方法?我找到了一个解决方法,使用PdfCopy将所选页面复制到新PDF中,而不是从当前PDF中删除页面,如下面的注释所示: