What is relation between JAXP and Xerces? - Java

What is relation between JAXP and Xerces?

Xerces is a group of libraries for parsing, serializing, validating and manipulating XML. It implements a number of standard APIs for XML parsing, which includes DOM and SAX.

JAXP is an API which is more accurately known as abstraction layer. JAXP provides an easy access for using SAX and DOM for dealing with some difficult tasks. Certain vendor-specific tasks could be accessed in a vendor-neutral way.

JAXP and Xerces are similar in playing a role to deal with database like Oracle’s JDBC driver for Oracle.
What type of garbage collection does a System.gc() do? - Java
Among various types of garbage collections, the System.gc() performs an explicit collection of garbage calls. The other garbage collection types are:...
When do I need to use reflection feature in Java?
Reflection feature in java allows an executing java program for introspecting upon itself. It also allows for manipulating internal properties of the program...
Explain how to measure time in nanoseconds - Java
Time is measured in nanoseconds by using the method nanoTime() method. This method returns the current value of the most precise system timer available in nanoseconds...
Post your comment