active questions tagged xmlslurper - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:46:53Z http://stackoverflow.com/feeds/tag/xmlslurper 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-11-30T09:00:14Z <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/1675542/using-xmlslurper-how-to-select-sub-elements-while-iterating-over-a-gpathresult 0 Using XmlSlurper: How to select sub-elements while iterating over a GPathResult Andrew Whitehouse 2009-11-04T17:51:08Z 2009-11-05T05:48:18Z <p>I am writing an HTML parser, which uses TagSoup to pass a well-formed structure to XMLSlurper.</p> <p>Here's the generalised code:</p> <pre><code>def htmlText = """ &lt;html&gt; &lt;body&gt; &lt;div id="divId" class="divclass"&gt; &lt;h2&gt;Heading 2&lt;/h2&gt; &lt;ol&gt; &lt;li&gt;&lt;h3&gt;&lt;a class="box" href="#href1"&gt;href1 link text&lt;/a&gt; &lt;span&gt;extra stuff&lt;/span&gt;&lt;/h3&gt;&lt;address&gt;Here is the address&lt;span&gt;Telephone number: &lt;strong&gt;telephone&lt;/strong&gt;&lt;/span&gt;&lt;/address&gt;&lt;/li&gt; &lt;li&gt;&lt;h3&gt;&lt;a class="box" href="#href2"&gt;href2 link text&lt;/a&gt; &lt;span&gt;extra stuff&lt;/span&gt;&lt;/h3&gt;&lt;address&gt;Here is another address&lt;span&gt;Another telephone: &lt;strong&gt;0845 1111111&lt;/strong&gt;&lt;/span&gt;&lt;/address&gt;&lt;/li&gt; &lt;/ol&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; """ def html = new XmlSlurper(new org.ccil.cowan.tagsoup.Parser()).parseText( htmlText ); html.'**'.grep { it.@class == 'divclass' }.ol.li.each { linkItem -&gt; def link = linkItem.h3.a.@href def address = linkItem.address.text() println "$link: $address\n" } </code></pre> <p>I would expect the each to let me select each 'li' in turn so I can retrieve the corresponding href and address details. Instead, I am getting this output:</p> <pre><code>#href1#href2: Here is the addressTelephone number: telephoneHere is another addressAnother telephone: 0845 1111111 </code></pre> <p>I've checked various example on the web and these either deal with XML, or are one-liner examples like "retrieve all links from this file". It's seems that the it.h3.a.@href expression is collecting all hrefs in the text, even though I'm passing it a reference to the parent 'li' node. </p> <p>Can you let me know:</p> <ul> <li>Why I'm getting the output shown </li> <li>How I can retrieve the href/address pairs for each 'li' item</li> </ul> <p>Thanks.</p> http://stackoverflow.com/questions/480431/how-can-i-check-for-the-existence-of-an-element-with-groovys-xmlslurper 1 How can I check for the existence of an element with Groovy's XmlSlurper? Josh Brown 2009-01-26T16:39:38Z 2009-01-27T03:40:15Z <p>I'm trying to determine whether an XML element exists with Groovy's XmlSlurper. Is there a way to do this? For example:</p> <pre><code>&lt;foo&gt; &lt;bar/&gt; &lt;/foo&gt; </code></pre> <p>How do I check whether the bar element exists?</p> http://stackoverflow.com/questions/100325/groovy-correct-syntax-for-xmlslurper-to-find-elements-with-a-given-attribute 3 Groovy: Correct Syntax for XMLSlurper to find elements with a given attribute Peter Kelley 2008-09-19T07:49:26Z 2008-09-19T09:47:29Z <p>Given a HTML file with the structure html->body->a bunch of divs what is the correct groovy statement to find all of the divs with a non blank tags attribute?</p> <p>The following is not working:</p> <pre><code>def nodes = html.body.div.findAll {it.@tags != null} </code></pre> <p>because it finds all the nodes.</p>