I am looking at parsing some xml content for my application (based on groovy) and I am stuck at this point where I have to choose between JSoup and groovy's native XMLSlurper.

RSS Feeds parsed are of medium size not exceeding more than 25 items. So the size of the content being parsed is neither too much nor too less.

Although the content is of medium size, parsing of content happens several times. So in terms of overhead and speed, which of the two is a better choice?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

For parsing 25 items, I wouldn't worry about it too much.

I'd use XmlSlurper first, as it doesn't add a dependency to your project and is integrated tightly into Groovy, but then consider other options if for some reason it does not work as well as expected

link|improve this answer
feedback

XmlSlurper. TagSoup is really for the vagaries of HTML.

Pretty easy to do a speed comparison though, no?

link|improve this answer
Speed comparison? Are you suggesting me to use a profiler or something of the sort? – Vamsi Emani Sep 23 '11 at 5:30
1  
@VeeKay wrapping the parsing with prints of currentTimeMillis would probably be sufficient. – Dave Newton Sep 23 '11 at 11:20
feedback

Your Answer

 
or
required, but never shown

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