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.