com.lowagie.text.html

Class HtmlParser


public class HtmlParser
extends XmlParser

This class can be used to parse some HTML files.

Field Summary

Fields inherited from class com.lowagie.text.xml.XmlParser

parser

Constructor Summary

HtmlParser()
Constructs an HtmlParser.

Method Summary

void
go(DocListener document, InputSource is)
Parses a given file.
void
go(DocListener document, InputStream is)
Parses a given file.
void
go(DocListener document, Reader is)
Parses a given file.
void
go(DocListener document, String file)
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, InputStream 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)
Parses a given file that validates with the iText DTD and writes the content to a document.
static void
parse(DocListener document, String file)
Parses a given file that validates with the iText DTD and writes the content to a document.

Methods inherited from class com.lowagie.text.xml.XmlParser

go, go, go, go, go, go, parse, parse, parse, parse, parse, parse, parse, parse, parse, parse, parse, parse

Constructor Details

HtmlParser

public HtmlParser()
Constructs an HtmlParser.

Method Details

go

public void go(DocListener document,
               InputSource is)
Parses a given file.
Overrides:
go in interface XmlParser
Parameters:
document - the document the parser will write to
is - the InputSource with the content

go

public void go(DocListener document,
               InputStream is)
Parses a given file.
Parameters:
document - the document the parser will write to
is - the InputStream with the content

go

public void go(DocListener document,
               Reader is)
Parses a given file.
Parameters:
document - the document the parser will write to
is - the Reader with the content

go

public void go(DocListener document,
               String file)
Parses a given file.
Overrides:
go in interface XmlParser
Parameters:
document - the document the parser will write to
file - the file with the content

parse

public static void parse(DocListener document,
                         InputSource is)
Parses a given file that validates with the iText DTD and writes the content to a document.
Overrides:
parse in interface XmlParser
Parameters:
document - the document the parser will write to
is - the InputSource with the content

parse

public static void parse(DocListener document,
                         InputStream is)
Parses a given file that validates with the iText DTD and writes the content to a document.
Overrides:
parse in interface XmlParser
Parameters:
document - the document the parser will write to
is - the InputStream with the content

parse

public static void parse(DocListener document,
                         Reader is)
Parses a given file that validates with the iText DTD and writes the content to a document.
Overrides:
parse in interface XmlParser
Parameters:
document - the document the parser will write to
is - the Reader with the content

parse

public static void parse(DocListener document,
                         String file)
Parses a given file that validates with the iText DTD and writes the content to a document.
Overrides:
parse in interface XmlParser
Parameters:
document - the document the parser will write to
file - the file with the content