views:

62

answers:

4

I'm developing an application for an old phone which is running java 1.4 and it's not upgradeable. I can't find any library for XML parsign that is compatible with such an old java runtime.

Any idea?

Thanks!

A: 

Not even (an older version of) Xerces?

extraneon
A: 

You should have no problem using XStream.

Matt Ball
+1  A: 

javax.xml.parsers seems the most obvious solution - it is bundled in the JRE. You have a DOM and a SAX parser.

If the mobile tag on your question is supposed to imply j2me, then take a look here and more importantly here.

Bozho
Your answer deserves at least my upvote and probably deserves acceptance from the asker.
Derek Mahar
A: 

Dom4j has a nice API and is compatible with Java 1.4.

highlycaffeinated