vote up 3 vote down star

What is the best method to parse multiple, discrete, custom XML documents with Java?

flag

75% accept rate

2 Answers

vote up 2 vote down check

I would use Stax to parse XML, it's fast and easy to use. I've been using it on my last project to parse XML files up to 24MB. There's a nice introduction on java.net, which tells you everything you need to know to get started.

link|flag
vote up 2 vote down

You will want to use org.xml.sax.XMLReader (http://java.sun.com/j2se/1.4.2/docs/api/org/xml/sax/XMLReader.html).

link|flag

Your Answer

Get an OpenID
or

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