Java tutorial
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.io.IOException; import java.util.Arrays; import org.apache.pdfbox.pdmodel.interactive.form.PDAcroForm; import org.apache.pdfbox.pdmodel.interactive.form.PDField; import org.apache.pdfbox.pdmodel.PDDocument; import org.apache.pdfbox.pdmodel.PDDocumentCatalog; import org.apache.pdfbox.exceptions.COSVisitorException; /** * This example will take a PDF document and set a FDF field in it. * * @author <a href="mailto:ben@benlitchfield.com">Ben Litchfield</a> * @version $Revision: 1.7 $ */ public class SetField { /** * This will set a single field in the document. * * @param pdfDocument The PDF to set the field in. * @param name The name of the field to set. * @param value The new value of the field. * * @throws IOException If there is an error setting the field. */ public void setField(PDDocument pdfDocument, String[] args) throws IOException { PDDocumentCatalog docCatalog = pdfDocument.getDocumentCatalog(); PDAcroForm acroForm = docCatalog.getAcroForm(); for (int i = 0; i < args.length - 1; i = i + 2) { PDField field = acroForm.getField(args[i]); if (field != null) { field.setValue(args[i + 1]); } else { System.err.println("No field found with name:" + args[i]); } } } /** * This will read a PDF file and set a field and then write it the pdf out again. * <br /> * see usage() for commandline * * @param args command line arguments * * @throws IOException If there is an error importing the FDF document. * @throws COSVisitorException If there is an error writing the PDF. */ 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, Arrays.copyOfRange(args, 1, args.length)); pdf.save(args[0] + ".computed.pdf"); } } finally { if (pdf != null) { pdf.close(); } } } /** * This will print out a message telling how to use this example. */ private static void usage() { System.err.println( "usage: org.apache.pdfbox.examples.fdf.SetField <pdf-file> <field-name> <field-value> [[<field-name> <field-value>] ...]"); } }