tags:

views:

53

answers:

1

I'm trying to choose an XML-processing framework for my Java projects, and I'm lost in names.. XOM, JDOM, etc. Where I can find a detailed comparison of all popular Java XML frameworks?

A: 

When choosing an XML processing framework I would recommend sticking with standards: DOM, SAX, StAX, JAXB. Each of these have frameworks have multiple implementations that can be compared on performance, extensions, etc.

Standard frameworks integrate better with other technolgies, and offer the ability to easily switch implementations if you hit a blocking bug.

Blaise Doughan