Why DOM Parser would take more Memory than SAX parser
while they are parsing?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What is the initial state, When a thread is created and started?
what is handle?
Brief description about local interfaces?
whats is mean by class.forName() whats the return type of class
Name the eight primitive java types.
To what value is a variable of the string type automatically initialized?
what is domain,give me some brief information about that?
What is meant by Superconductivity?
what is the diffrence between banking and insurance domain?
what is catalina in tomcat server.
how can we load a file of a user in the database table?
In inglish: How to convert jar to exe files? Em português: Como converter arquivos .jar para .exe?