com.lowagie.text.xml
public class XmlParser extends Object
Field Summary | |
---|---|
protected SAXParser | parser This is the instance of the parser. |
Constructor Summary | |
---|---|
XmlParser()
Constructs an XmlParser. |
Method Summary | |
---|---|
void | go(DocListener document, InputSource is)
Parses a given file. |
void | go(DocListener document, InputSource is, String tagmap)
Parses a given file. |
void | go(DocListener document, InputSource is, InputStream tagmap)
Parses a given file. |
void | go(DocListener document, InputSource is, HashMap tagmap)
Parses a given file. |
void | go(DocListener document, String file)
Parses a given file. |
void | go(DocListener document, String file, String tagmap)
Parses a given file. |
void | go(DocListener document, String file, HashMap tagmap)
Parses a given file. |
static void | parse(DocListener document, InputSource is)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, InputSource is, String tagmap)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, InputSource is, HashMap tagmap)
Parses a given file and writes the content to a document, using a certain tagmap. |
static void | parse(DocListener document, String file)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, String file, String tagmap)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, String file, HashMap tagmap)
Parses a given file and writes the content to a document, using a certain tagmap. |
static void | parse(DocListener document, InputStream is)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, InputStream is, String tagmap)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, InputStream is, HashMap tagmap)
Parses a given file and writes the content to a document, using a certain tagmap. |
static void | parse(DocListener document, Reader is)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, Reader is, String tagmap)
Parses a given file that validates with the iText DTD and writes the content to a document. |
static void | parse(DocListener document, Reader is, HashMap tagmap)
Parses a given file and writes the content to a document, using a certain tagmap. |
Parameters: document The document that will listen to the parser is The InputStream with the contents
Parameters: document The document that will listen to the parser is The inputsource with the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser is the inputsource with the content tagmap an inputstream to a user defined tagmap
Parameters: document The document that will listen to the parser is the inputsource with the content tagmap a user defined tagmap
Parameters: document The document that will listen to the parser file The path to a file with the content
Parameters: document the document that will listen to the parser file the path to a file with the content tagmap a user defined tagmap
Parameters: document The document that will listen to the parser file the path to a file with the content tagmap a user defined tagmap
Parameters: document The document that will listen to the parser is the inputsource with the content
Parameters: document The document that will listen to the parser is The inputsource with the content tagmap a user defined tagmap
Parameters: document The document that will listen to the parser is The inputsource with the content tagmap a user defined tagmap
Parameters: document The document that will listen to the parser file The path to a file with the content
Parameters: document The document that will listen to the parser file The path to a file with the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser file The path to a file with the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser is The inputsource with the content
Parameters: document The document that will listen to the parser is The inputstream with the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser is The InputStream with the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser is The reader that reads the content
Parameters: document The document that will listen to the parser is The reader that reads the content tagmap A user defined tagmap
Parameters: document The document that will listen to the parser is The reader that reads the content tagmap A user defined tagmap