SAX uses an event callback mechanism requiring you to code methods to handle events thrown by the parser as it encounters different entities within the XML document. DOM parses an XML document and returns an instance of org.w3c.dom.Document. This document object's tree must then be "walked" in order to process the different elements.
SAX parser requires to implement an event handler DOM object is an object in memory representing the parsed xml file and DOM object is actualy built up using SAX . . . Your valueable suggessions are welcome