InterviewSolution
Saved Bookmarks
| 1. |
Explain the term JAXP. |
|
Answer» JAXP (Java API for XML Processing) is BASICALLY a Java API that allows parsing, transform, validate, and queries XML files with DOM (Document Object Model), SAX (Simple API for XML), or StAX (Streaming API for XML) Parsers/Parsing INTERFACES. It is used for processing XML data using applications that are WRITTEN in Java programming LANGUAGE. |
|