Apache PDFBox禁用签名字段

时间:2015-03-12 19:40:40

标签: java pdfbox

我正在尝试阅读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();
    }
} 

我的问题:

  1. 我如何知道此禁用是否有效?因为,当我打开的时候 PDF我仍然可以签署该文件。
  2. field.getDictionary().setInt("FF", FLAG_READ_ONLY);我没有看到标记值Ff,因此我应该使用哪个标记。文档说FLAG_READ_ONLY - Ff标记here

1 个答案:

答案 0 :(得分:1)

在此过程中我还需要保存文档。 所以pdDoc.save(“新文件的路径”); - &GT;为我工作,签名字段被禁用。