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 anybo开发者_开发知识库dy please help me?
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).
精彩评论