DEVFYI - Developer Resource - FYI

What is Java API for XML Processing (JAXP)

J2EE Interview Questions and Answers (Part 1)


(Continued from previous question...)

130. What is Java API for XML Processing (JAXP)

An API for processing XML documents. JAXP leverages the parser standards SAX and DOM so that you can choose to parse your data as a stream of events or to build a tree-structured representation of it. JAXP supports the XSLT standard, giving you control over the presentation of the data and enabling you to convert the data to other XML documents or to other formats, such as HTML. JAXP provides namespace support, allowing you to work with schema that might otherwise have naming conflicts.

(Continued on next question...)

Other Interview Questions