Last active
August 25, 2016 17:24
-
-
Save lhotari/1a1fdd862195bab11e6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example of using StAX to split a large XML document and parse a single element using XmlSlurper | |
import javax.xml.stream.XMLInputFactory | |
import javax.xml.stream.XMLStreamReader | |
import javax.xml.transform.Transformer | |
import javax.xml.transform.TransformerFactory | |
import javax.xml.transform.sax.SAXResult | |
import javax.xml.transform.stax.StAXSource | |
def url = new URL("http://repo2.maven.org/maven2/archetype-catalog.xml") | |
url.withInputStream { inputStream -> | |
def xmlStreamReader = XMLInputFactory.newInstance().createXMLStreamReader(inputStream) | |
def transformer = TransformerFactory.newInstance().newTransformer() | |
while (xmlStreamReader.hasNext()) { | |
xmlStreamReader.next() | |
if (xmlStreamReader.isStartElement() && xmlStreamReader.getLocalName() == 'archetype') { | |
// Example of splitting a large XML document and parsing a single element with XmlSlurper at a time | |
def xmlSlurper = new XmlSlurper() | |
transformer.transform(new StAXSource(xmlStreamReader), new SAXResult(xmlSlurper)) | |
def archetype = xmlSlurper.document | |
println "${archetype.groupId} ${archetype.artifactId} ${archetype.version}" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment