InterviewSolution
Saved Bookmarks
| 1. |
How We Can Navigate The Xml Documents? |
|
Answer» You can use SAX if what you require is SIMPLE accesing of the xml structure. You can go for DOM if you need node handling capabilities like INSERTING a node, MODIFYING a node, deleteing node and stuff like that. You can use SAX if what you require is simple accesing of the xml structure. You can go for DOM if you need node handling capabilities like inserting a node, modifying a node, deleteing node and stuff like that. |
|