vote up 3 vote down star

My quick search reveals the reference implementation (http://stax.codehaus.org), the Woodstox implementation (http://woodstox.codehaus.org), and Sun's SJSXP implementation (https://sjsxp.dev.java.net/).

Please comment on the relative merits of these, and fill me in on any other implementations I should consider.

flag

6 Answers

vote up 3 vote down check

Woodstox wins every time for me. It's not just performance, either - sjsxp is twitchy and overly pedantic, woodstox just gets on with it.

link|flag
vote up 3 vote down

Interesting to note that:

SJSXP performance is consistently faster than BEA, Oracle and RI for all
of the documents described here in this study. However, it lags behind
Woodstox and XPP3 in some document sizes and in the best cases, exhibits
similar performance compared to these two parsers.

Article from Sun

link|flag
vote up 0 vote down

http://javolution.org/ has a good StAX implementation

link|flag
javolution is not strictly a StAX implementation, it's StAX-like, but the APIs are different – ykaganovich Sep 23 '08 at 18:48
vote up -2 vote down

jason heinz has the best I've seen

link|flag
vote up -2 vote down

You're damn right, Colin.

link|flag
vote up 0 vote down

Comment on Javolution: No it's not Stax implementation. It does implement an API similar to Stax, but because of Javolution's avoidance of Strings etc, it can not be source compatible.

Either way, their implementation is not particularly good -- it's not faster, and it is less fully-featured, doesn't detect xml problems (like duplicate attributes), won't process entities or such. So I don't see much reason using it, unless you use Javolution classes for everything.

link|flag

Your Answer

Get an OpenID
or

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