public final class SimpleXMLParser
extends java.lang.Object
The parser can:
<[CDATA[ ... ]]> construct
\r\n and \r to \n on input, in accordance with the XML Specification, Section 2.11
| Modifier and Type | Method | Description |
|---|---|---|
static java.lang.String |
escapeXML(java.lang.String s,
boolean onlyASCII) |
Deprecated.
moved to
XMLUtil.escapeXML(String, boolean), left
here for the sake of backwards compatibility |
static void |
parse(SimpleXMLDocHandler doc,
SimpleXMLDocHandlerComment comment,
java.io.Reader r,
boolean html) |
Parses the XML document firing the events to the handler.
|
static void |
parse(SimpleXMLDocHandler doc,
java.io.InputStream in) |
Parses the XML document firing the events to the handler.
|
static void |
parse(SimpleXMLDocHandler doc,
java.io.Reader r) |
public static void parse(SimpleXMLDocHandler doc, SimpleXMLDocHandlerComment comment, java.io.Reader r, boolean html) throws java.io.IOException
doc - the document handlercomment - the comment handlerr - the document. The encoding is already resolved. The reader is not closedhtml - java.io.IOException - on errorpublic static void parse(SimpleXMLDocHandler doc, java.io.InputStream in) throws java.io.IOException
doc - the document handlerin - the document. The encoding is deduced from the stream. The stream is not closedjava.io.IOException - on errorpublic static void parse(SimpleXMLDocHandler doc, java.io.Reader r) throws java.io.IOException
doc - r - java.io.IOException@Deprecated
public static java.lang.String escapeXML(java.lang.String s,
boolean onlyASCII)
XMLUtil.escapeXML(String, boolean), left
here for the sake of backwards compatibilitys - the string to be escapedonlyASCII - codes above 127 will always be escaped with &#nn; if
trueCopyright © 1998–2018. All rights reserved.