I am developing an application in which the first time I am going to parse data from an xml file coming from a remote server.
But i am not able to select which parser is efficient or best suited for parsing. As there are mainly three types of parsing, which i know :
- SAX
- XMLPullParsing
- DOM
Which is the best parser to parse data? As I searched on Google and found the positive and negative both sides of the above parsers. But I was not able to determine which is the most efficient.
The XML has heavy data with a number of tags.
Please guide me and suggest me which parser I should use as I am using parsing in my application for first time.