因此,我使用此代码从 PDF 文件中获取字段名称及其值。
Document doc = new Document("path\\to\\file\\Sample.pdf");
Field[] fields = doc.getForm().getFields();
for (Field f : fields) {
System.out.println(f.getFullName() + " : " + f.getValue());
}
假设我在表单中有以下字段,上面的代码将这些字段显示为:
First Name : John
Middle Name :
Last Name : Doe
Suffix : Jr
Date of Birth : 01-01-1985
Nationality : American
我怎样才能打印某些必填字段?
就像我只想打印Last Name
和Date of Birth
使用 Aspose PDF