Like in XML DOM, childNodes Property is there what is the equivalent in SAX?
I want to know the number of elements for the traversal, like in DOM, we can do,
for (i=0; i<node.getChildNodes().length();i++)
{
//Traversal code
}
Similarly, what can i use in SAX?
attributes.getlength(); -> This does not solve.