com.lowagie.text.pdf
public class FdfReader extends PdfReader
Field Summary | |
---|---|
PdfName | encoding |
HashMap | fields |
String | fileSpec |
Constructor Summary | |
---|---|
FdfReader(String filename) Reads an FDF form. | |
FdfReader(byte[] pdfIn) Reads an FDF form. | |
FdfReader(URL url) Reads an FDF form. | |
FdfReader(InputStream is) Reads an FDF form. |
Method Summary | |
---|---|
PdfDictionary | getField(String name) Gets the field dictionary. |
HashMap | getFields() Gets all the fields. |
String | getFieldValue(String name) Gets the field value or null if the field does not
exist or has no value defined. |
String | getFileSpec() Gets the PDF file specification contained in the FDF. |
protected void | kidNode(PdfDictionary merged, String name) |
protected void | readFields() |
protected void | readPdf() |
Parameters: filename the file name of the form
Throws: IOException on error
Parameters: pdfIn the byte array with the form
Throws: IOException on error
Parameters: url the URL of the document
Throws: IOException on error
Parameters: is the InputStream
containing the document. The stream is read to the
end but is not closed
Throws: IOException on error
Parameters: name the fully qualified field name
Returns: the field dictionary
PdfDictionary
with the field content.Returns: all the fields
null
if the field does not
exist or has no value defined.Parameters: name the fully qualified field name
Returns: the field value or null
Returns: the PDF file specification contained in the FDF