Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to read smallish (few MB at the most, UTF-8 encoded) XML files, rummage around looking at various elements and attributes, perhaps modify a few and write the XML back out again to disk (preferably with nice, indented formatting).

What would be the best XML parser for my needs? There are lots to choose from. Some I'm aware of are:

And of course the one in the JDK (I'm using Java 6). I'm familiar with xerces but find it clunky.

Recommendations?

share|improve this question
2  
I think, you can find more players here: xml.com/lpt/a/1703 – dma_k Mar 18 '10 at 12:59
1  
BTW, the linked site for dom4j is wrong. The correct one is: dom4j.sourceforge.net – Spencer Kormos Aug 25 '11 at 14:50
1  
@Spencer K Fixed, thx. – Evan Aug 26 '11 at 1:43
65  
Great, another "not constructive" yet very useful post -- closed :-( – greenoldman Jan 22 '12 at 21:07
4  
@greenoldman yes, the reason why such extremely useful posts are closed is because stackoverflow awards points for closing, so point-eager members have an incentive to band together and close posts that would otherwise be "common sense exceptions" to the official guidelines. stackoverflow desperately needs to award points for "common sense exception waivers" where a larger number of good samaritans can "waive" a post out of closure, deletion, etc. – randomstring Apr 1 at 23:57
show 2 more comments

closed as not constructive by Will Sep 14 '11 at 15:21

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 20 down vote accepted

If speed and memory is no problem, dom4j is a really good option. If you need speed, using a stax parser like woodstox is the right way, but you have to write more code to get things done and you have to get used to process xml in streams.

share|improve this answer
1  
dom4j is pretty good, but definitely not without problems. For good dom4j alternatives, see stackoverflow.com/questions/831865/… – Jonik Jun 6 '09 at 11:13

I think you should not consider any specific parser implementation. Java API for XML Processing lets you use any conforming parser implementation in a standard way. The code should be much more portable, and when you realise that a specific parser has grown too old, you can replace it with another without changing a line of your code (if you do it correctly).

Basically there are three ways of handling XML in a standard way:

  • SAX This is the simplest API. You read/modify the XML by defining a Handler class that receives the data inside elements/attributtes when the XML gets processed in a serial way. It is faster and simpler if you only plan to read some attributes/elements and/or write some values back (your case).
  • DOM This method creates an object tree which lets you modify/access it randomly so it is better for complex XML manipulation and handling.
  • StAX This is in the middle of the path between SAX and DOM. You just write code to pull the data from the parser you are interested in when it is processed.

Forget about propietary APIs such as Jdom or Apache ones (i.e. Apache Xerces XMLSerializer) because will tie you to a specific implementation that can evolve in time or lose backwards compatibility, which will make you change your code in the future when you want to upgrade to a new version of Jdom or whatever parser you use. If you stick to Java standard API (using factories and interfaces) your code will be much more modular and maintenable.

There is no need to say that all (I haven't checked all, but I'm almost sure) of the parsers proposed comply with a JAXP implememtation so technically you can use all, no matter which.

share|improve this answer
5  
Actually, 3 ways: StAX (javax.xml.stream) is the third standard one. – StaxMan Apr 23 '09 at 4:00
1  
java-samples.com/showtutorial.php?tutorialid=152 (personally love SAX) – kitokid Dec 15 '12 at 6:42
@kitokid Chrome tells me that page has nasty stuff on it. I used this instead: sce.uhcl.edu/yue/courses/xml/notes/xmlparser/IntroDOM.asp – Ryan Shillington Dec 17 '12 at 18:56

Here is a nice comparision on DOM, SAX, StAX & TrAX (Source: http://download.oracle.com/docs/cd/E17802_01/webservices/webservices/docs/1.6/tutorial/doc/SJSXP2.html )

Feature                  StAX                  SAX                      DOM                  TrAX

API Type                Pull,streaming     Push,streaming    In memory tree    XSLT Rule

Ease of Use          High                    Medium                 High                    Medium

XPath Capability   No                       No                        Yes                      Yes

CPU & Memory     Good                  Good                    Varies                  Varies

Forward Only        Yes                    Yes                        No                       No

Read XML              Yes                    Yes                        Yes                     Yes

Write XML              Yes                    No                          Yes                     Yes

CRUD                      No                      No                         Yes                     No

share|improve this answer

Simple XML http://simple.sourceforge.net/ is very easy for (de)serializing objects.

share|improve this answer

If have found dom4j to be the tool for working with XML. Especially compared to Xerces.

share|improve this answer

In addition to SAX and DOM there is STaX parsing available using XMLStreamReader which is an xml pull parser.

share|improve this answer

If you care less about performance, I'm a big fan of Apache Digester, since it essentially lets you map directly from XML to Java Beans.

Otherwise, you have to first parse, and then construct your objects.

share|improve this answer
I don't need to make Java Beans, just manipulate the raw XML elements a little, and review certain elements to get data from them, so a DOM style parser is probably my ideal solution. – Evan Dec 18 '08 at 1:48
Yea, dom4j would probably be a better solution there... I used to use it heavily, until I went one level up to digester – Uri Dec 18 '08 at 6:03

I wouldn't recommended this is you've got a lot of "thinking" in your app, but using XSLT could be better (and potentially faster with XSLT-to-bytecode compilation) than Java manipulation.

share|improve this answer
1  
Better, possible: faster, very unlikely. – StaxMan Apr 9 '09 at 6:18

protected by AVD May 28 '12 at 3:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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