Can generic XML by parsed as nicely as simple XML in Groovy? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:10:59Zhttp://stackoverflow.com/feeds/question/1051778http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy1Can generic XML by parsed as nicely as simple XML in Groovy?John Flinchbaugh2009-06-27T00:16:25Z2009-08-04T00:00:01Z
<p>Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily.</p>
<pre><code>def xml = "<html><head><title>groovy</title></head></html>"
def html = new XmlSlurper().parseText(xml)
println html.head.title
</code></pre>
<p>Is there a way to make this simple tree navigation possible for generic (type-based, etc) XML. Ideally, in the snippet of code below, I'd like to walk the values by their <em>name</em> attribute, but instead, I have to do all this searching:</p>
<pre><code>def genxml = """
<doc>
<lst name = "head">
<str name = "title">groovy</str>
<str name = "keywords">java xml</str>
</lst>
</doc>"""
def doc = new XmlSlurper().parseText(genxml)
println doc.lst.find { it.@name == "head" }.str.find { it.@name == "title" }
</code></pre>
<p>Is there a way to walk this just as:</p>
<pre><code>println doc.head.title
</code></pre>
http://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy/1051887#10518870Answer by Ray Tayek for Can generic XML by parsed as nicely as simple XML in Groovy?Ray Tayek2009-06-27T01:16:47Z2009-06-27T01:16:47Z<p>head and title are attributes.</p>
<p>there are some really subtle differences between slurper and parser: <a href="http://www.ibm.com/developerworks/java/library/j-pg05199/" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-pg05199/</a></p>
<p>you can do this:</p>
<pre><code>println "${doc.lst.str[0]} ${doc.lst.str[0].@name}"
println doc.lst.str.each {
println "${it} ${it.@name}"
}
</code></pre>
<p>but look at the output:</p>
<pre><code>groovy title
groovy title
java xml keywords
groovyjava xml
</code></pre>