<root>
<parent>
<child1> 30</child1>
<child2> 30</child2>
<child3> 30</child3>
</parent>
<parent>
<child1> 20</child1>
<child2> 30</child2>
<child3> 30</child3>
</parent>
<parent>
<child1> 30</child1>
<child2> 30</child2>
<child3> 30</child3>
</parent>
</root>
I am really new to the world of coding and to sax parsing.. Consider the above XML, what I need is. .. based on the value of the tag child1, if it is greater than 20, only then I would want to parse the remaining child tags(child2 and child3), otherwise I would want to move on to the next parent tag.
Could anyone pls suggest what would be the ideal way to do it?