parse complex xml using Sax xml parsing in android
Posted
by
hardik joshi
on Stack Overflow
See other posts from Stack Overflow
or by hardik joshi
Published on 2012-07-06T09:11:59Z
Indexed on
2012/07/06
9:15 UTC
Read the original article
Hit count: 438
android
|xml-parsing
Hello i am new in android and i am currently using SAX parsing in android. Following is my xml file.
<response>
<peoples>
<name>
abc</name>
<age>
20</age>
<info>
<address>
USA</address>
<family>
parents</family>
</info>
</people>
<people>
<name>
abc</name>
<age>
20</age>
<info>
<address>
USA</address>
<family>
parents</family>
</info>
</people>
</response>
How to parse this xml using SAX parser. Please help me to find this.Thank you in advance.
© Stack Overflow or respective owner