Extensible Mark-up Language, abbreviated as XML is a very popular format and commonly used for sharing data on the internet. Android DOM(Document Object Model) parser is a program that loads the XML file into the Android memory, parses it and extracts the required information from it. This parser uses an object-based approach for creating and parsing the XML files. This results in more consumption of memory. The document is parsed through every possible node in the XML file. The XML file that contains the information to be extracted includes the following four main components:
Out of these many parsers, Android provides three types of XML parsers, namely, DOM, SAX and XMLPullParser. Among all of them, XMLPullParser is recommended by android because it is easier to use and relatively more efficient.
|