使用iText

时间:2015-10-02 11:01:18

标签: java itext

我正在尝试通过java中的 iText 将javascript验证添加到现有的 Acroform 字段中。到目前为止,我已编写了以下代码,但没有为表单字段分配任何操作。有什么我想念的吗?

    PdfReader reader = new PdfReader(uri);
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest));
    PdfWriter writer = stamper.getWriter();

    AcroFields acroFields = reader.getAcroFields();
    AcroFields.Item dateField = acroFields.getFieldItem("SignDateField");
    PdfAction pdfAction = PdfAction.javaScript("app.alert('hello');", writer);

    PdfDictionary widgetRefDict = (PdfDictionary) PdfReader.getPdfObject(dateField.getWidgetRef(0));
    PdfDictionary actionDict = widgetRefDict.getAsDict(PdfName.AA);
    if (actionDict == null) {
        actionDict = new PdfDictionary();
    }
    actionDict.put(PdfName.V, pdfAction);

    stamper.close();
    reader.close();

1 个答案:

答案 0 :(得分:2)

如果注释字典中没有 AA 条目,则表示您正在创建新字典。但是你没有将新词典添加到注释词典中。

// ...
if (actionDict == null) {
    actionDict = new PdfDictionary();
    // add the newly created action dict
    widgetRefDict.put(PdfName.AA, actionDict);
}
// ...