views:

41

answers:

1

I want to do xml parsing of finding the "Humidity", "Current Temperature" and the "Icon" of the temperature(a SUN) in my android application.

Can anybody please help me?

+1  A: 

This is not really related to Android platform, since Android supports standard JAXP (Java API for XML Processing). So you can use both SAX or DOM to process your file.

For comprehensive information about XML processing in Java you could take a look at this book.

For a quicker Java XML processing tutorial here you have an example (there are thousands).

Fernando Miguélez