Posted By:
Anjli_Nandwani
Posted On:
Wednesday, January 12, 2005 01:23 AM
Hi,
I am facing a problem while parsing one XML file.
there is one element
Now I want to get all the attributes in this element, not the values but the attributes.
If I use
Element.getAttributes(), it returns a NamedNodeMap which is sorted, i.e. I get
auditable,
Exception,
id
which is not my requirement, I want to get
id,
Exception,
auditable
the same order in which they appear in Element.
Is there any way to do that????