Package org.apache.pdfbox.tools
Class ImportXFDF
- java.lang.Object
-
- org.apache.pdfbox.tools.ImportXFDF
-
- All Implemented Interfaces:
java.util.concurrent.Callable<java.lang.Integer>
public class ImportXFDF extends java.lang.Object implements java.util.concurrent.Callable<java.lang.Integer>This example will take a PDF document and fill the fields with data from the XFDF fields.
-
-
Constructor Summary
Constructors Constructor Description ImportXFDF()Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Integercall()voidimportFDF(PDDocument pdfDocument, FDFDocument fdfDocument)This will takes the values from the fdf document and import them into the PDF document.static voidmain(java.lang.String[] args)This will import an fdf document and write out another pdf.
-
-
-
Method Detail
-
importFDF
public void importFDF(PDDocument pdfDocument, FDFDocument fdfDocument) throws java.io.IOException
This will takes the values from the fdf document and import them into the PDF document.- Parameters:
pdfDocument- The document to put the fdf data into.fdfDocument- The FDF document to get the data from.- Throws:
java.io.IOException- If there is an error setting the data in the field.
-
main
public static void main(java.lang.String[] args)
This will import an fdf document and write out another pdf.
see usage() for commandline- Parameters:
args- command line arguments
-
call
public java.lang.Integer call()
- Specified by:
callin interfacejava.util.concurrent.Callable<java.lang.Integer>
-
-