Why DOM Parser would take more Memory than SAX parser
while they are parsing?

Answers were Sorted based on User's Feedback



Why DOM Parser would take more Memory than SAX parser while they are parsing?..

Answer / sandya

Both SAX and DOM are used to parse the XML document. Both
has advantages and disadvantages and can be used in our
programming depending on the situation

SAX:

1. Parses node by node

2. Doesnt store the XML in memory

3. We cant insert or delete a node

4. Top to bottom traversing

DOM

1. Stores the entire XML document into memory before processing

2. Occupies more memory

3. We can insert or delete nodes

4. Traverse in any direction.

If we need to find a node and doesnt need to insert or
delete we can go with SAX itself otherwise DOM provided we
have more memory.

Is This Answer Correct ?    11 Yes 1 No

Why DOM Parser would take more Memory than SAX parser while they are parsing?..

Answer / guest

DOM Parser loads the entire xml data model into the memory
where as sax dont.


Is This Answer Correct ?    6 Yes 1 No

Why DOM Parser would take more Memory than SAX parser while they are parsing?..

Answer / paven

Dom parser has to read all the thinges in xml so it takes
more memory and time where as sax parser takes data of our
wish so less time and memory

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

What is the diffrence between a local-tx-datasource and a xa-datasource? Can you use transactions in both?

0 Answers  


How to add new JTabbed pane?

1 Answers  


what are getters and setters in Java with examples?

0 Answers   HCL, Infotech,


What is jboss?

0 Answers  


difference of inheritance and interface

3 Answers  


What is difference between object state and behavior?

0 Answers  


what is the use of State Factories?

0 Answers  


how to use debug in my elipse to solve problems that exist in my project

0 Answers   SAP Labs, TCS,


What class is used to create Server side object ?

0 Answers  


What is the difference between session and entity beans?

0 Answers  


What is Servlet Filter And What does it work?

1 Answers   TCS,


What are the services in RMI ?

0 Answers  


Categories