| Author |
Reading XML node attribute
|
uday kantt
Greenhorn
Joined: May 05, 2011
Posts: 23
|
|
Hi
The following is the XML file
<Students>
<Student id=10>
<name>Steve</name>
<qualification status="failed">Computer Science</qualification>
</Student>
<Student id=9>
<name>John</name>
<qualification status="passed">Computer Graphics</qualification>
</Student>
<Student id=8>
<name>Sarah</name>
<qualification status="passed">Computer Science</qualification>
</Student>
</Students>
So given the above XML file. If the status ="passed" then that particular id of the Student should be fetched into the String variable. Is this possible. Do we have to travel reverse in the XML file. Is this possible. Please Help.
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
|
|
If you are parsing the XML to a DOM (Document Object Model) then you can use the methods in the standard Java library to "move" back from a child Node to a parent Node.
Study the org.w3c.dom.Node JavaDocs
bill
|
Java Resources at www.wbrogden.com
|
 |
g tsuji
Ranch Hand
Joined: Jan 18, 2011
Posts: 368
|
|
This is the xpath for the desired result(s).
ps: Your xml doc is not well-formed at the most basic level. Can you see it?!
|
 |
 |
|
|
subject: Reading XML node attribute
|
|
|