SAX StartElement - Enumerating over attributes
HelloIn my StartElement event handler method I want to enumerate over all attributes found for an element, is this possible does anyone know?ThanksJon
# 2
The startElement method has the Attributes parameter to retrieve the attributes.startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes atts)