|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.openqa.jetty.xml.XmlParser
public class XmlParser
XML Parser wrapper. This class wraps any standard JAXP1.1 parser with convieniant error and entity handlers and a mini dom-like document tree.
By default, the parser is created as a validating parser. This can be changed by setting the "org.openqa.jetty.xml.XmlParser.NotValidating" system property to true.
Nested Class Summary | |
---|---|
static class |
XmlParser.Attribute
XML Attribute. |
static class |
XmlParser.Node
XML Node. |
Constructor Summary | |
---|---|
XmlParser()
Construct |
|
XmlParser(boolean validating)
Constructor. |
Method Summary | |
---|---|
String |
getXpath()
|
XmlParser.Node |
parse(File file)
Parse File. |
XmlParser.Node |
parse(InputSource source)
|
XmlParser.Node |
parse(InputStream in)
Parse InputStream. |
XmlParser.Node |
parse(String url)
Parse string URL. |
XmlParser.Node |
parse(URL url)
Parse URL. |
void |
redirectEntity(String name,
URL entity)
|
void |
setXpath(String xpath)
Set an XPath A very simple subset of xpath is supported to select a partial tree. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public XmlParser()
public XmlParser(boolean validating)
Method Detail |
---|
public void redirectEntity(String name, URL entity)
name
- entity
- public String getXpath()
public void setXpath(String xpath)
xpath
- The xpath to set.public XmlParser.Node parse(InputSource source) throws IOException, SAXException
IOException
SAXException
public XmlParser.Node parse(String url) throws IOException, SAXException
IOException
SAXException
public XmlParser.Node parse(File file) throws IOException, SAXException
IOException
SAXException
public XmlParser.Node parse(InputStream in) throws IOException, SAXException
IOException
SAXException
public XmlParser.Node parse(URL url) throws IOException, SAXException
IOException
SAXException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |