Can generic XML by parsed as nicely as simple XML in Groovy? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:10:59Z http://stackoverflow.com/feeds/question/1051778 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy 1 Can generic XML by parsed as nicely as simple XML in Groovy? John Flinchbaugh 2009-06-27T00:16:25Z 2009-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 = "&lt;html&gt;&lt;head&gt;&lt;title&gt;groovy&lt;/title&gt;&lt;/head&gt;&lt;/html&gt;" 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 = """ &lt;doc&gt; &lt;lst name = "head"&gt; &lt;str name = "title"&gt;groovy&lt;/str&gt; &lt;str name = "keywords"&gt;java xml&lt;/str&gt; &lt;/lst&gt; &lt;/doc&gt;""" 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#1051887 0 Answer by Ray Tayek for Can generic XML by parsed as nicely as simple XML in Groovy? Ray Tayek 2009-06-27T01:16:47Z 2009-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>