Which API should I use to parse XML response from a URL stored in a string buffer ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use JAXB:
|
|||
|
|
|
It depends on how you want to process the XML. If it is a large document and you just want to perform a one pass parse from head to tail then use a SAX API. This method will use less memory and have higher processing throughput. If you want to manipulate the XML tree, and traverse the Nodes up and down the tree then use a DOM API. This method requires the whole XML DOM to be in memory, but allows you to manipulate the DOM and perform XPath type queries on it. I believe SAXON can handle both. |
|||
|
|