1.

Name some methods for processing the attributes connected to an element in SAX parsing.

Answer»

Attributes Interface specifies methods for processing the attributes connected to an element.

  • int getLength() - Returns number of attributes.

  • String getQName(int index)

  • String getValue(int index)

  • String getValue(String qname)



Discussion

No Comment Found