Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

xml - How to get attribute value using XPath in Java?

I have below XML to parse using XPath:

<?xml version="1.0" encoding="UTF-8"?>
<schema>
  <element name="name_ele1" id="name_id_1" >test name1</element>
  <element name="name_ele2" id="name_id_2" >test name2</element>
  <element name="name_ele2" id="name_id_3" >test name3</element>
</schema>

I want to fetch "name" from the xml document based upon the Id I have passed but I am not able to get the required data instead query is returning blank.

XPathExpression expr = xpath.compile("/schema/element[@id='name_id_2']/name/text()");
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Like this:

XPathExpression expr = xpath.compile("/schema/element[@id='name_id_2']/@name");

Your expression attempts to select the text inside the name element, instead of the value of the name attribute.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...