Prev Next

Java / JAXB

Difference between JAXB and DOM/SAX.

The Java DOM and SAX parsing are lower-level APIs to parse XML documents, while JAXB is a higher-level API for converting XML elements and attributes to a Java object hierarchy (and vice versa). Implementations of JAXB may use a DOM or SAX parser behind the scenes to do the actual parsing of the XML input data.

More Related questions...

Show more question and Answers...

JMS

Comments & Discussions