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 |
difference between applicationserver and webserver
What is prototype?
Why is main purpose of XML?
What is a tasks priority and how is it used in scheduling?
What are the implicit objects?
What are the various thread priorities?
To make an object to begin executing as a separate thread, what method is used?
Which Taglibraury you used in your project? plz send me ans....which we r using generally
What is ripple effect?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
cud u help me ... i am struggling with this question... to find all the subsets of a given set for ex.... a,,b,c shud give all the subsets.... i gt the program in c bt nt able to get it in java..... help needed ..
Why use POJO when I can use hashmap