|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.xml.sax.helpers.DefaultHandler
groovy.util.XmlSlurper
public class XmlSlurper extends DefaultHandler
Parse XML into a document tree that may be traversed similar to XPath expressions. For example:
def rootNode = new XmlSlurper().parseText(
'<root><one a1="uno!"/><two>Some text!</two></root>' )
assert rootNode.name() == 'root'
assert rootNode.one[0].@a1 == 'uno!'
assert rootNode.two.text() == 'Some text!'
rootNode.children().each { assert it.name() in ['one','two'] }
Note that in some cases, a 'selector' expression may not resolve to a single node. For example:
def rootNode = new XmlSlurper().parseText(
'''<root>
<a>one!</a>
<a>two!</a>
</root>''' )
assert rootNode.a.size() == 2
rootNode.a.each { assert it.text() in ['one!','two!'] }
GPathResult| Constructor and Description |
|---|
XmlSlurper()
Uses the defaults of not validating and namespace aware. |
XmlSlurper(boolean validating,
boolean namespaceAware)
|
XmlSlurper(SAXParser parser)
|
XmlSlurper(XMLReader reader)
|
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] ch,
int start,
int length)
|
void |
endDocument()
|
void |
endElement(String namespaceURI,
String localName,
String qName)
|
GPathResult |
getDocument()
|
DTDHandler |
getDTDHandler()
|
EntityResolver |
getEntityResolver()
|
ErrorHandler |
getErrorHandler()
|
boolean |
getFeature(String uri)
|
Object |
getProperty(String uri)
|
GPathResult |
parse(File file)
Parses the content of the given file as XML turning it into a GPathResult object |
GPathResult |
parse(InputSource input)
Parse the content of the specified input source into a GPathResult object |
GPathResult |
parse(InputStream input)
Parse the content of the specified input stream into an GPathResult Object. |
GPathResult |
parse(Reader in)
Parse the content of the specified reader into a GPathResult Object. |
GPathResult |
parse(String uri)
Parse the content of the specified URI into a GPathResult Object |
GPathResult |
parseText(String text)
A helper method to parse the given text as XML |
void |
setDTDHandler(DTDHandler dtdHandler)
|
void |
setEntityBaseUrl(URL base)
Resolves entities against using the suppied URL as the base for relative URLs |
void |
setEntityResolver(EntityResolver entityResolver)
|
void |
setErrorHandler(ErrorHandler errorHandler)
|
void |
setFeature(String uri,
boolean value)
|
void |
setKeepWhitespace(boolean keepWhitespace)
|
void |
setProperty(String uri,
Object value)
|
void |
startDocument()
|
void |
startElement(String namespaceURI,
String localName,
String qName,
Attributes atts)
|
void |
startPrefixMapping(String tag,
String uri)
|
| Methods inherited from class org.xml.sax.helpers.DefaultHandler |
|---|
endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, unparsedEntityDecl, warning |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public XmlSlurper()
throws ParserConfigurationException,
SAXException
ParserConfigurationExceptionSAXException
public XmlSlurper(boolean validating,
boolean namespaceAware)
throws ParserConfigurationException,
SAXException
ParserConfigurationExceptionSAXExceptionpublic XmlSlurper(XMLReader reader)
public XmlSlurper(SAXParser parser)
throws SAXException
SAXException| Method Detail |
|---|
public void setKeepWhitespace(boolean keepWhitespace)
keepWhitespace - If true then whitespace before elements is kept.
The default is to discard the whitespace.public GPathResult getDocument()
public GPathResult parse(InputSource input)
throws IOException,
SAXException
input - IOExceptionSAXException
public GPathResult parse(File file)
throws IOException,
SAXException
file - IOExceptionSAXException
public GPathResult parse(InputStream input)
throws IOException,
SAXException
input - IOExceptionSAXException
public GPathResult parse(Reader in)
throws IOException,
SAXException
in - IOExceptionSAXException
public GPathResult parse(String uri)
throws IOException,
SAXException
uri - IOExceptionSAXException
public GPathResult parseText(String text)
throws IOException,
SAXException
text - IOExceptionSAXExceptionpublic DTDHandler getDTDHandler()
public EntityResolver getEntityResolver()
public ErrorHandler getErrorHandler()
public boolean getFeature(String uri)
throws SAXNotRecognizedException,
SAXNotSupportedException
SAXNotRecognizedExceptionSAXNotSupportedException
public Object getProperty(String uri)
throws SAXNotRecognizedException,
SAXNotSupportedException
SAXNotRecognizedExceptionSAXNotSupportedExceptionpublic void setDTDHandler(DTDHandler dtdHandler)
public void setEntityResolver(EntityResolver entityResolver)
public void setEntityBaseUrl(URL base)
base - The URL used to resolve relative URLspublic void setErrorHandler(ErrorHandler errorHandler)
public void setFeature(String uri,
boolean value)
throws SAXNotRecognizedException,
SAXNotSupportedException
SAXNotRecognizedExceptionSAXNotSupportedException
public void setProperty(String uri,
Object value)
throws SAXNotRecognizedException,
SAXNotSupportedException
SAXNotRecognizedExceptionSAXNotSupportedException
public void startDocument()
throws SAXException
startDocument in interface ContentHandlerstartDocument in class DefaultHandlerSAXException
public void startPrefixMapping(String tag,
String uri)
throws SAXException
startPrefixMapping in interface ContentHandlerstartPrefixMapping in class DefaultHandlerSAXException
public void startElement(String namespaceURI,
String localName,
String qName,
Attributes atts)
throws SAXException
startElement in interface ContentHandlerstartElement in class DefaultHandlerSAXException
public void characters(char[] ch,
int start,
int length)
throws SAXException
characters in interface ContentHandlercharacters in class DefaultHandlerSAXException
public void endElement(String namespaceURI,
String localName,
String qName)
throws SAXException
endElement in interface ContentHandlerendElement in class DefaultHandlerSAXException
public void endDocument()
throws SAXException
endDocument in interface ContentHandlerendDocument in class DefaultHandlerSAXException
|
Copyright © 2003-2010 The Codehaus. All rights reserved. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||