how to get field page in PDFBox API 2?

廉价感情. 提交于 2019-12-11 04:03:46

问题


i'm trying to get the field page in my project, and i dont know how to get the page number for each field and field. i have this code:

    String formTemplate = "Template.pdf";
    String filledForm = "filledForm.pdf";
    PDDocument pdfDocument = PDDocument.load(new File(formTemplate));

    PDAcroForm acroForm = pdfDocument.getDocumentCatalog().getAcroForm();

    if (acroForm != null)
    {

        PDField field = acroForm.getField( "name" );
        field.getAcroForm().setNeedAppearances(true);
        field.setValue("my name");
        acroForm.getField( "date" );
        field.setValue("my date");


    }

    pdfDocument.save(filledForm);
    pdfDocument.close();
}

How do I get the page numbers of the fields?

thanks ron


回答1:


This will show you on what page(s) (0-based) the field appears:

PDField field = acroForm.getField( "date" );
for (PDAnnotationWidget widget : field.getWidgets())
{
    PDPage page = widget.getPage();
    if (page == null)
    {
        // incorrect PDF. Plan B: try all pages to check the annotations.
        for (int p = 0; p < doc.getNumberOfPages(); ++p)
        {
            List<PDAnnotation> annotations = doc.getPage(p).getAnnotations();
            for (PDAnnotation ann : annotations)
            {
                if (ann.getCOSObject() == widget.getCOSObject())
                {
                    System.out.println("found at page: " + p);
                    break;
                }
            }
        }
        continue;
    }
    int pageNum = pdfDocument.getPages().indexOf(page);
    System.out.println("found at page: " + pageNum);
}


来源:https://stackoverflow.com/questions/36887376/how-to-get-field-page-in-pdfbox-api-2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!