I want to get the attribute value of the xml file without knowing its index, since the attributes are repeated in more than one element in the XML file.
here is my xml file
<fields>
<form name="userAdditionFrom">
</form>
</fields>
and here is the procssing file
case XMLEvent.ATTRIBUTE:
String attName = xmlReader.getAttributeValue(?????);
break;
thanx in advance.
Alaa
source
share