JAXP (JSR-206)
It is a set of standard APIs for Java XML parsers. It covers the following areas:
- DOM (
org.w3c.dom package) - SAX (
org.xml.sax package) - StAX / JSR-173 (
java.xml.stream ) - XSLT (
javax.xml.transform ) - XPath (
javax.xml.xpath ) - Validation (
javax.xml.validation ) - Datatypes (
javax.xml.datatype )
This standard was created by a group of experts with representatives of many companies and individuals. As a standard, this means that there are many implementations (Xerces implements JAXP), and it can be included in the JDK.
Xerces
It is an open source Java XML parser that provides DOM and SAX implementations that conform to the JAXP standard.
JDOM and DOM4J
They are open source Java XML parsers.
source share