Java preparserxml,Java-XML解析器性能:Sun Java流XML解析器(SJSXP)与Woodstox

2023-05-16

I am looking for latest, memory efficient and high-performance java XML parsing API.

I need to parse 3 MB to 5 MB XML files.

I did google on this and come to know about Sun Java Streaming XML Parser (SJSXP) and Woodstox is much faster than DOM & SAX. Both are using StAX API.

*schema validation is not supported by these technologies.

Aalto XML processor is also implements StAX API.

I have not found concrete findings on performance on these technologies.

Which one will be best in context of memory efficient, high-performance and ease of use ?

解决方案

Here are some more links that might be relevant:

As to performance: SJSXP is the slowest; it's just a repackage internals of Xerces, wrapped in Stax API. This has some negative effects on performance (since it's not really designed for pull parsing). Woodstox is bit faster; much faster for small documents and writing, less difference when parsing longer documents.

And Aalto is by far fastest of the three, especially for parsing. It is commonly 50% - 100% faster than either Woodstox or SJSXP. One downside is that it does not handle DTDs (and thereby not external entities; it handles pre-defined and character entities).

Disclaimer: I am author of Woodstox and Aalto; as well as contributor to SJSXP (bug fixes)

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Java preparserxml,Java-XML解析器性能:Sun Java流XML解析器(SJSXP)与Woodstox 的相关文章

随机推荐