XOM v/s javax.xml.parsers

java, xml, xom

Solution

XOM is extremely quick compared to the standard W3C DOM. If that's your priority, there's none better.

However, it's still a DOM-type API, and so it's not memory efficient. It's not a replacement for SAX or STAX.

Problem

i want to do read simple XML file .i found Simple way to do Xml in Java There are also several parsers available just wanted to make sure that what are the advantages of using XOM parser over suns parser Any suggestions?

Original source

Related problems