DOM & SAX parsers explanation and difference ?
Answer Posted / sangeri
DOM parser
1.In DOM parser the representation is in the memory as it
is used for the internal representation of an
XML document.
2.It reads the whole document and returns a DOM tree
representation of the
XML document.
3.So for smaller xml we can use DOM as memory is the
constraint.
SAX parser
1.It is event driven
2.It works incrementally and generates events that are
passed to the application.
3.For huge
XML we can go for SAX rather than DOM
4.It does not give any structural representation for the
XML document.
So depending on the application you develop you can choose
any of the parser
| Is This Answer Correct ? | 31 Yes | 6 No |
Post New Answer View All Answers
How do you use tags in indesign?
What is call template in xslt?
What are the two types of xml parsers?
How do I link xml to xsd?
Is docx a zip file?
What is parent in pom xml?
What are the advantages of xml over html?
What is the difference between csv and xml?
What is application of xml?
What is xsl describe its two parts?
How you define template in XSLT?
What happens when firefox knows a web page has atom feeds?
If an element or attribute is in the scope of an xml namespace declaration, is its name in that namespace?
What software is needed to process xml namespaces?
What are the standard ways of parsing xml document? Or what is a xml parser?