active questions tagged xmlslurper - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T14:46:53Zhttp://stackoverflow.com/feeds/tag/xmlslurperhttp://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-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 = "<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/1675542/using-xmlslurper-how-to-select-sub-elements-while-iterating-over-a-gpathresult0Using XmlSlurper: How to select sub-elements while iterating over a GPathResultAndrew Whitehouse2009-11-04T17:51:08Z2009-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 = """
<html>
<body>
<div id="divId" class="divclass">
<h2>Heading 2</h2>
<ol>
<li><h3><a class="box" href="#href1">href1 link text</a> <span>extra stuff</span></h3><address>Here is the address<span>Telephone number: <strong>telephone</strong></span></address></li>
<li><h3><a class="box" href="#href2">href2 link text</a> <span>extra stuff</span></h3><address>Here is another address<span>Another telephone: <strong>0845 1111111</strong></span></address></li>
</ol>
</div>
</body>
</html>
"""
def html = new XmlSlurper(new org.ccil.cowan.tagsoup.Parser()).parseText( htmlText );
html.'**'.grep { it.@class == 'divclass' }.ol.li.each { linkItem ->
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-xmlslurper1How can I check for the existence of an element with Groovy's XmlSlurper?Josh Brown2009-01-26T16:39:38Z2009-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><foo>
<bar/>
</foo>
</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-attribute3Groovy: Correct Syntax for XMLSlurper to find elements with a given attributePeter Kelley2008-09-19T07:49:26Z2008-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>