Uses of Class
org.apache.pdfbox.pdmodel.fdf.FDFDocument
-
Packages that use FDFDocument Package Description org.apache.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream.org.apache.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document.org.apache.pdfbox.pdmodel.interactive.form The interactive package contains classes for handling Interactive Forms, also known as "AcroForms".org.apache.pdfbox.tools -
-
Uses of FDFDocument in org.apache.pdfbox.pdfwriter
Fields in org.apache.pdfbox.pdfwriter declared as FDFDocument Modifier and Type Field Description private FDFDocument
COSWriter. fdfDocument
Methods in org.apache.pdfbox.pdfwriter with parameters of type FDFDocument Modifier and Type Method Description void
COSWriter. write(FDFDocument doc)
This will write the fdf document. -
Uses of FDFDocument in org.apache.pdfbox.pdmodel.fdf
Methods in org.apache.pdfbox.pdmodel.fdf that return FDFDocument Modifier and Type Method Description static FDFDocument
FDFDocument. load(java.io.File file)
This will load a document from a file.static FDFDocument
FDFDocument. load(java.io.InputStream input)
This will load a document from an input stream.static FDFDocument
FDFDocument. load(java.lang.String filename)
This will load a document from a file.static FDFDocument
FDFDocument. loadXFDF(java.io.File file)
This will load a document from a file.static FDFDocument
FDFDocument. loadXFDF(java.io.InputStream input)
This will load a document from an input stream.static FDFDocument
FDFDocument. loadXFDF(java.lang.String filename)
This will load a document from a file. -
Uses of FDFDocument in org.apache.pdfbox.pdmodel.interactive.form
Methods in org.apache.pdfbox.pdmodel.interactive.form that return FDFDocument Modifier and Type Method Description FDFDocument
PDAcroForm. exportFDF()
This will export all FDF form data.Methods in org.apache.pdfbox.pdmodel.interactive.form with parameters of type FDFDocument Modifier and Type Method Description void
PDAcroForm. importFDF(FDFDocument fdf)
This method will import an entire FDF document into the PDF document that this acroform is part of. -
Uses of FDFDocument in org.apache.pdfbox.tools
Methods in org.apache.pdfbox.tools with parameters of type FDFDocument Modifier and Type Method Description void
ExportFDF. close(FDFDocument doc)
Close the document.void
ExportXFDF. close(FDFDocument doc)
Close the document.void
ImportFDF. close(FDFDocument doc)
Close the document.void
ImportXFDF. close(FDFDocument doc)
Close the document.void
ImportFDF. importFDF(PDDocument pdfDocument, FDFDocument fdfDocument)
This will takes the values from the fdf document and import them into the PDF document.void
ImportXFDF. importFDF(PDDocument pdfDocument, FDFDocument fdfDocument)
This will takes the values from the fdf document and import them into the PDF document.
-