如何使用Java pdfbox api设置PDF格式的值

时间:2013-01-29 12:05:28

标签: java pdf pdfbox

我需要使用JAVA pdacroform api

为PDF表单设置一个值

下面的代码,用于设置PDF文件中特定字段的值 但它抛出

线程“main”中的异常java.lang.NoClassDefFoundError:org / fontbox / afm / AFMParser

尽管添加了fontbox-1.7.jar

任何人都可以帮助我吗

import java.io.IOException;

import org.pdfbox.pdmodel.interactive.form.PDAcroForm;
import org.pdfbox.pdmodel.interactive.form.PDField;

import org.pdfbox.pdmodel.PDDocument;
import org.pdfbox.pdmodel.PDDocumentCatalog;

import org.pdfbox.exceptions.COSVisitorException;

import org.pdfbox.examples.AbstractExample;

public class SetField extends AbstractExample {

    public void setField(PDDocument pdfDocument, String name, String value)
            throws IOException {
        PDDocumentCatalog docCatalog = pdfDocument.getDocumentCatalog();
        PDAcroForm acroForm = docCatalog.getAcroForm();
        PDField field = acroForm.getField(name);
        if (field != null) {
            field.setValue(value);
        } else {
            System.err.println("No field found with name:" + name);
        }

    }

    public static void main(String[] args) throws IOException,
            COSVisitorException {
        SetField setter = new SetField();
        setter.setField(args);
    }

    private void setField(String[] args) throws IOException,
            COSVisitorException {
        PDDocument pdf = null;
        try {
            if (args.length != 3) {
                usage();
            } else {
                SetField example = new SetField();

                pdf = PDDocument.load(args[0]);
                example.setField(pdf, args[1], args[2]);
                pdf.save(args[0]);
            }
        } finally {
            if (pdf != null) {
                pdf.close();
            }
        }
    }

    private static void usage() {
        System.err
                .println("usage: org.apache.pdfbox.examples.fdf.SetField <pdf-file> <field-name> <field-value>");
    }
}

谢谢

2 个答案:

答案 0 :(得分:5)

由于缺少带有类定义的jar,你得到了java.lang.NoClassDefFoundError。

您需要将FontBox jar添加到类路径中。

答案 1 :(得分:1)

根据您对@ user1951544的回答,您似乎使用了非常旧的PdfBox版本0.7.3。这很可能与当前的FontBox jar没有很好的配合。我建议更新到当前状态。

在这种情况下,您还应该考虑fontbox所需的其他硬依赖项:

  

The main PDFBox component, pdfbox, has hard dependencies on the fontbox and jempbox components and the commons-logging library.