Xpath - How to get all the attribute names and values of an element
Posted
by BBDeveloper
on Stack Overflow
See other posts from Stack Overflow
or by BBDeveloper
Published on 2010-03-17T07:52:25Z
Indexed on
2010/03/17
8:41 UTC
Read the original article
Hit count: 240
I am using xpath in java. I want to get all the attributes (name & Value) of an element. I found the query to get the attribute values of an element, now I want to get attribute names alone or names and values in single query.
<Element1 ID="a123" attr1="value1" attr2="value2" attr3="value3" attr4="value4" attr5="value5" />
Here using the following query to get all the attribute values of Element1
XmlUtils.getAttributes(Path, String.format("//*/@*"));
Using this format //*/@*
I can get the values. result would be value1 value2 value3 value4 value5 a123
Now I want to know the query to get all the attribute names, or query to get all the attributes name and value.
© Stack Overflow or respective owner