I'm testing Xmlpull, I've actually parsed xml locally on my computer. Now, I would like to parse an XML file on internet, the file is:
http://api.androidhive.info/pizza/?format=xml
but I can't find a way to stream data to the XmlPullParser object, please give me some general guideline on how to solve this?
An other approach I thought, was to download the xml file via java io and then parse the file locally, but this is not exactly what I was trying to achieve. I would like to parse the xml file directly on on internet, without storing a copy locally.
anyways please tell me the best practice.
Thanks, hope everything is clear