I have looked at the documentation on sorting XML with Groovy

def records = new XmlParser().parseText(XmlExamples.CAR_RECORDS)
assert ['Royale', 'P50', 'HSV Maloo'] == records.car.sort{ it.'@year'.toInteger() }.'@name'

but what I am trying to do is sort the XML and then return the xml string sorted. I know I can completely rebuild the XML after i am done sorting.

I know I can run an XML Transformation on the XML to get it sorted

def factory = TransformerFactory.newInstance()
def transformer = factory.newTransformer(new StreamSource(new StringReader(xslt)))
transformer.transform(new StreamSource(new StringReader(input)), new StreamResult(System.out))

BUT I was looking for some Groovy magic to make it easier for me

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

A solution is to replace directly the list of car within the records. Not sure if more magic exists!

records.value = records.car.sort{ it.'@year'.toInteger() }
println XmlUtil.serialize(records)
link|improve this answer
will give it a try... I found a solution but I think this is easier. – Aaron Saunders Aug 24 '10 at 22:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.