Hi i want to get data from xpath query

Element location = (Element) doc.query("//location[location_name='"+ locationName +"']/*").get(0).getDocument().getRootElement();
System.out.println(location.toXML());

Element loc = location.getFirstChildElement("location");
System.out.println(loc.getFirstChildElement("location_name").getValue());

But no matter what I choose i always get 1 node (its becouse .get(0)) but i dont know how to select the node which was selected by query.

I found that i should cast node to Element (XOM getting attribute from Node?) but here is showed how to select first node.

link|improve this question

51% accept rate
feedback

4 Answers

up vote 1 down vote accepted
+50

Call getParent() on the first element in the result:

Builder parse = new Builder();
Document xml = parse.build("/var/www/JAVA/toForum.xml");

System.out.println(xml.query("//location[@id=83]/*").get(0).getParent().toXML());

Produces the following output:

<location id="83">
  <location_name>name</location_name>
  <company_name>company a</company_name>
  <machines>
    <machine id="12">A</machine>
    <machine id="312">B</machine>
  </machines>
</location>
link|improve this answer
where have U been for so long :) +50 4 U – skowron-line Jun 7 '11 at 18:46
feedback

The call you make to getDocument() is returning the entirety of the XML document.

The call to query() returns a Nodes object directly containing references to the nodes that you are after.

If you change to

Element location = (Element)doc.query(
            "//location[location_name='"+ locationName +"']/*").get(0);

System.out.println(location.getAttribute("location_name").getValue());

it should be ok

EDIT (by extraneon)

Some extra explanation not worthy of an answer by itself: By doing

Element location = 
  (Element) doc.query("//location[location_name='" 
                       + locationName +"']/*").get(0)
            .getDocument().getRootElement();

you search through the tree and get the requested node. But then you call getDocument().getRootNode() on the element you want, which will give you the uppermost node of the document.

The above query can thus be simplified to:

Element location = (Element)doc.getRootElement();

which is not wahat you intended.

It's a bit like a bungie jump. You go down to where you need to be (the element) but go immediately back to where you came from (the root element).

link|improve this answer
Thanks extraneon :) – Harry Lime Jun 3 '11 at 8:12
feedback

It's not clear (at least for me) what actually has to be done. From your query you should get list of nodes matching the given criteria. You will get NodeList and then you can iterate over this NodeList and get content of each node with getNodeValue for example.

link|improve this answer
I want to get attributes but dont know how ?? and rest of values, which a get Nodes location = doc.query("//location[location_name='"+ locationName +"']/*"); location.get(7).getValue(); now – skowron-line May 17 '11 at 8:16
Ok but how to get selected node ?? – skowron-line May 17 '11 at 9:15
feedback

XML

<?xml version="1.0" encoding="UTF-8"?>
<locations>
    <location id="83">
        <location_name>name</location_name>
        <company_name>company a</company_name>
        <machines>
            <machine id="12">A</machine>
            <machine id="312">B</machine>
        </machines>
    </location>
    <location id="85">
        <location_name>name</location_name>
        <company_name>company c</company_name>
        <machines>
            <machine id="21">A</machine>
            <machine id="45">B</machine>
        </machines>
    </location>
</locations>

I think about this and...

Builder parse = new Builder();
Document xml = parse.build("/var/www/JAVA/toForum.xml");

String s =  xml.query("//location[@id=83]/*").get(0).toXML();
System.out.println("string: "+ s);

Document xml2 = parse.build(s, null);
System.out.println(xml2.toXML().toString());

But s returns will return me just first node

<location_name>name</location_name>

And how to get whole node ?? I can change .get value 0-n and get each node but this is not what I want to achive

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.