parse complex xml using Sax xml parsing in android
- by hardik joshi
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.