public class HtmlParser extends XmlParser
| Constructor and Description |
|---|
HtmlParser()
Constructs an HtmlParser.
|
| Modifier and Type | Method and Description |
|---|---|
void |
go(DocListener document,
org.xml.sax.InputSource is)
Parses a given file.
|
void |
go(DocListener document,
java.io.InputStream is)
Parses a given file.
|
void |
go(DocListener document,
java.io.Reader is)
Parses a given file.
|
void |
go(DocListener document,
java.lang.String file)
Parses a given file.
|
static void |
parse(DocListener document,
org.xml.sax.InputSource is)
Parses a given file that validates with the iText DTD and writes the content to a document.
|
static void |
parse(DocListener document,
java.io.InputStream is)
Parses a given file that validates with the iText DTD and writes the content to a document.
|
static void |
parse(DocListener document,
java.io.Reader is)
Parses a given file that validates with the iText DTD and writes the content to a document.
|
static void |
parse(DocListener document,
java.lang.String file)
Parses a given file that validates with the iText DTD and writes the content to a document.
|
public void go(DocListener document, org.xml.sax.InputSource is)
public static void parse(DocListener document, org.xml.sax.InputSource is)
document - the document the parser will write tois - the InputSource with the contentpublic void go(DocListener document, java.lang.String file)
public static void parse(DocListener document, java.lang.String file)
document - the document the parser will write tofile - the file with the contentpublic void go(DocListener document, java.io.InputStream is)
document - the document the parser will write tois - the InputStream with the contentpublic static void parse(DocListener document, java.io.InputStream is)
document - the document the parser will write tois - the InputStream with the contentpublic void go(DocListener document, java.io.Reader is)
document - the document the parser will write tois - the Reader with the contentpublic static void parse(DocListener document, java.io.Reader is)
document - the document the parser will write tois - the Reader with the content