iText7 setValue方法不起作用

时间:2016-11-21 02:54:23

标签: java pdf itext7

我正在尝试使用iText 7将表单添加到pdf中。

尝试设置字段值时,我一直收到错误消息。我无法从addKid()方法的documentation中找到相关信息。有谁知道如何解决这个错误?

以下是我正在使用的代码示例:

PdfTextFormField confField = PdfFormField.createText(pdf);
confField.setFieldName(fieldName);

PdfWidgetAnnotation confCoverAnnot = new PdfWidgetAnnotation(new Rectangle(x, y, width, height));
PdfWidgetAnnotation confAnnot = new PdfWidgetAnnotation(new Rectangle(x2, y2, width2, height2));

for (int i = 1; i<= numPages; i++) {
    switch(i) {
        case 1:
            pdf.getPage(i).addAnnotation(confCoverAnnot);
            break;
        default:
            pdf.getPage(i).addAnnotation(confAnnot);
            break;
    }
}


/*
    Trying to have two different annotations reference the same field value.

    Upon using the `setValue()` method, I get: object.must.be.indirect.to.work.with.this.wrapper
    Any way to get this to work properly?
*/
form.addField(confField);
confField.addKid(confCoverAnnot);
confField.addKid(confAnnot);
if (value.equals("") != true) {
    confField.setValue(value); //error here
}

1 个答案:

答案 0 :(得分:2)

我认为你得到的错误是PdfException:线程&#34; main&#34;中的异常。 com.itextpdf.kernel.PdfException:对象必须是间接的才能使用这个包装器吗?

解决方案是在创建注释后将注释标记为间接注释:

PdfWidgetAnnotation confCoverAnnot = new PdfWidgetAnnotation(new Rectangle(x, y, width, height));
confCoverAnnot.makeIndirect(pdf);
PdfWidgetAnnotation confAnnot = new PdfWidgetAnnotation(new Rectangle(x, y, width, height));
confAnnot.makeIndirect(pdf);

说明: 在iText7中设置表单字段的值时,它希望注释是间接对象,并且在它们不是时会引发异常。由于PdfWidgetAnnotation是独立于PdfDocument创建的,因此需要通过调用makeIndirect()

明确指定链接