I am looking for the latest, memory efficient and high performance XML XML parsing API. I need to analyze files ranging in size from 3 MB to 5 MB.
I did google on this and found out about Sun Java Streaming XML Parser (SJSXP) and Woodstox much faster than DOM and SAX. Both use the StAX API. * Schema validation is not supported by these technologies.
The Aalto XML processor also implements the StAX API.
I did not find specific results regarding the effectiveness of these technologies.
Which one would be best in terms of memory efficiency, high performance, and ease of use?
source
share