Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have someNode and I'd like to do XPath on it like this:

XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expr = xpath.compile("//name");
Object result = expr.evaluate(SOMETHING_ELSE, XPathConstants.NODE);

How can I turn someNode to SOMETHING_ELSE and do my XPath?

share|improve this question
I didn't get the question. Elaborate – Bozho Feb 2 '10 at 21:04
I think maybe you're misunderstanding the use of evaluate. – ChadNC Feb 2 '10 at 21:48

1 Answer

What is wrong with Object result = expr.evaluate(someNode, XPathConstants.NODE);? The XPathExpression takes an Object as first parameter, and you can pass any reference to a node, element or attribute of your XML document.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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