我正在尝试阅读PDF文件,然后在此过程中禁用签名字段。
PDDocument pdDoc = null;
try {
final int FLAG_READ_ONLY = 1;
File file = new File("C:/sample.pdf");
InputStream is = new FileInputStream(file);
pdDoc = PDDocument.load(is);
PDDocumentCatalog catalog = pdDoc.getDocumentCatalog();
PDAcroForm form = catalog.getAcroForm();
List<PDField> acroFormFields = form.getFields();
for (PDField field: acroFormFields) {
if (field.getFieldType().equalsIgnoreCase("Sig")) {
field.getFullyQualifiedName();
field.setReadonly(true);
field.getDictionary().setInt("FF", FLAG_READ_ONLY);
}
}
if (pdDoc != null) {
pdDoc.close();
}
}
我的问题:
field.getDictionary().setInt("FF", FLAG_READ_ONLY);
我没有看到标记值Ff
,因此我应该使用哪个标记。文档说FLAG_READ_ONLY
- Ff
标记here。答案 0 :(得分:1)
在此过程中我还需要保存文档。 所以pdDoc.save(“新文件的路径”); - &GT;为我工作,签名字段被禁用。