|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.itextpdf.text.pdf.FdfWriter
public class FdfWriter
Writes an FDF form.
| Constructor Summary | |
|---|---|
FdfWriter()
Creates a new FdfWriter. |
|
| Method Summary | |
|---|---|
java.lang.String |
getField(java.lang.String field)
Gets the field value. |
java.util.HashMap<java.lang.String,java.lang.Object> |
getFields()
Gets all the fields. |
java.lang.String |
getFile()
Gets the PDF file name associated with the FDF. |
boolean |
removeField(java.lang.String field)
Removes the field value. |
boolean |
setFieldAsAction(java.lang.String field,
PdfAction action)
Sets the field value as a PDFAction. |
boolean |
setFieldAsName(java.lang.String field,
java.lang.String value)
Sets the field value as a name. |
boolean |
setFieldAsString(java.lang.String field,
java.lang.String value)
Sets the field value as a string. |
void |
setFields(AcroFields af)
Sets all the fields from this AcroFields |
void |
setFields(FdfReader fdf)
Sets all the fields from this FdfReader |
void |
setFields(PdfReader pdf)
Sets all the fields from this PdfReader |
void |
setFile(java.lang.String file)
Sets the PDF file name associated with the FDF. |
void |
writeTo(java.io.OutputStream os)
Writes the content to a stream. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public FdfWriter()
| Method Detail |
|---|
public void writeTo(java.io.OutputStream os)
throws java.io.IOException
os - the stream
java.io.IOException - on errorpublic boolean removeField(java.lang.String field)
field - the field name
true if the field was found and removed,
false otherwisepublic java.util.HashMap<java.lang.String,java.lang.Object> getFields()
PdfObject.
public java.lang.String getField(java.lang.String field)
field - the field name
null if not found
public boolean setFieldAsName(java.lang.String field,
java.lang.String value)
field - the fully qualified field namevalue - the value
true if the value was inserted,
false if the name is incompatible with
an existing field
public boolean setFieldAsString(java.lang.String field,
java.lang.String value)
field - the fully qualified field namevalue - the value
true if the value was inserted,
false if the name is incompatible with
an existing field
public boolean setFieldAsAction(java.lang.String field,
PdfAction action)
PDFAction.
For example, this method allows setting a form submit button action using PdfAction.createSubmitForm(String, Object[], int).
This method creates an A entry for the specified field in the underlying FDF file.
Method contributed by Philippe Laflamme (plaflamme)
field - the fully qualified field nameaction - the field's action
true if the value was inserted,
false if the name is incompatible with
an existing fieldpublic void setFields(FdfReader fdf)
FdfReader
fdf - the FdfReaderpublic void setFields(PdfReader pdf)
PdfReader
pdf - the PdfReaderpublic void setFields(AcroFields af)
AcroFields
af - the AcroFieldspublic java.lang.String getFile()
public void setFile(java.lang.String file)
file - the PDF file name associated with the FDF
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||