|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.lowagie.text.xml.simpleparser.SimpleXMLParser
public final class SimpleXMLParser
A simple XML and HTML parser. This parser is, like the SAX parser, an event based parser, but with much less functionality.
The parser can:
<[CDATA[ ... ]]> construct
\r\n and \r to \n on input, in accordance with the XML Specification, Section 2.11
| Method Summary | |
|---|---|
static String |
escapeXML(String s,
boolean onlyASCII)
Escapes a string with the appropriated XML codes. |
static void |
parse(SimpleXMLDocHandler doc,
InputStream in)
Parses the XML document firing the events to the handler. |
static void |
parse(SimpleXMLDocHandler doc,
Reader r)
|
static void |
parse(SimpleXMLDocHandler doc,
SimpleXMLDocHandlerComment comment,
Reader r,
boolean html)
Parses the XML document firing the events to the handler. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static void parse(SimpleXMLDocHandler doc,
SimpleXMLDocHandlerComment comment,
Reader r,
boolean html)
throws IOException
doc - the document handlerr - the document. The encoding is already resolved. The reader is not closed
IOException - on error
public static void parse(SimpleXMLDocHandler doc,
InputStream in)
throws IOException
doc - the document handlerin - the document. The encoding is deduced from the stream. The stream is not closed
IOException - on error
public static void parse(SimpleXMLDocHandler doc,
Reader r)
throws IOException
IOException
public static String escapeXML(String s,
boolean onlyASCII)
s - the string to be escapedonlyASCII - codes above 127 will always be escaped with &#nn; if true
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||