what is the difference between SAX Parser and DOM Parser??
Answer Posted / guest
1. sax is an event based parser and raise and event, while
dom is not
2. sax is forward only where as dom can acess both was
forward as well as backwards.
3. sax parses the file as it reads where as the dom loads
the file into memory to parse the file.
4. Sax does not have memory constraints where as the dom
has momory constraints as xml file is loaded into the
momory to parse the file.
5. sax is read only , dom is read and write both.
6. if you have to parse and use the content only once ,
consider using sax if the xml file and content are used
extensively then consider using dom
| Is This Answer Correct ? | 187 Yes | 12 No |
Post New Answer View All Answers
What is the use of execAndWait interceptor?
What is http forward?
What are inner class and anonymous class?
Explain about tiles?
What are the important methods of actionform?
What do you know about validation plugin ?
Give an example of validates method used to avoid errors.
What’s the difference between struts and turbine? What’s the difference between struts and espresso?
What is the role of action class in struts?
What’s the utilization of resource bundle properties file in struts validation structure?
What does modeldriven interceptor?
Why are struts tightly coupled?
what is ACID test for fresh engineers??what is the pattern??
Can you give an overview of how a struts application flows?
Why are frameworks used?