Most XML APIs are either event-based like SAX and XNI or tree-based APIslike DOM, JDOM, and dom4j. Most programmers find tree-based APIs to beeasier to use, but they are less efficient, especially when it comes tomemory usage. A typical in-memory tree is several times larger than thedocument it models. These APIs are normally not practical for documentslarger than a few megabytes in size or in memory-constrainedenvironments. In these situations, a streaming API such as SAX or XNI isnormally chos
continue >>
Feb
09
The XMLPULL API
Comments (0)
XML