JAXP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 7: | Line 7: | ||
Java API for XML Processing (JAXP) is a generic term covering various low-level XML APIs in Java SE: [[JAXP SAX|SAX]], [[JAXP DOM|DOM]], [[JAXP StAX|StAX]], [[JAXP XSLT|XSLT support]], namespace support, etc. | Java API for XML Processing (JAXP) is a generic term covering various low-level XML APIs in Java SE: [[JAXP SAX|SAX]], [[JAXP DOM|DOM]], [[JAXP StAX|StAX]], [[JAXP XSLT|XSLT support]], namespace support, etc. | ||
JAXP is centered around the concept of pluggability, allowing to plug in a specific implementation of the SAX or DOM API. | JAXP is centered around the concept of pluggability, allowing to plug in a specific implementation of the SAX or DOM API, XSLT processor, etc. | ||
=APIs= | =APIs= | ||
Line 21: | Line 21: | ||
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey"> | <blockquote style="background-color: #f9f9f9; border: solid thin lightgrey"> | ||
:[[JAXP DOM|DOM]] | :[[JAXP DOM|DOM]] | ||
: | |||
:[[JDOM]] | |||
: | |||
:[[dom4j]] | |||
</blockquote> | </blockquote> | ||
Latest revision as of 20:08, 9 November 2016
Internal
Overview
Java API for XML Processing (JAXP) is a generic term covering various low-level XML APIs in Java SE: SAX, DOM, StAX, XSLT support, namespace support, etc.
JAXP is centered around the concept of pluggability, allowing to plug in a specific implementation of the SAX or DOM API, XSLT processor, etc.