我试图以 pdf 形式获取所有可用字段,但在使用 PDFBoxNullPointerException
调用时遇到了一个问题。acroform.getFields()
样本:
pdDoc = PDDocument.load(fileName);
PDAcroForm form = pdDoc.getDocumentCatalog().getAcroForm();
if(form!=null)
{
List<PDField> field = form.getFields(); //here I am getting null pointer exception
}