I'm using Java 1.6. Given a org.w3c.dom.Node object, how do I get a String XPath expression for where that node falls in an XML document? It is NOT a given that this node or any of its ancestors/descendants have an id attribute.

link|improve this question

59% accept rate
1  
This has been answered many times for JavaScript on SO. You might get some use out of looking at some of those answers. Like this one: stackoverflow.com/questions/2661818/… – lwburk Dec 7 '11 at 15:16
feedback

1 Answer

up vote 1 down vote accepted

I don't believe there is any easy way via DOM. The problem is that there is not a single canonical way to identify a given node.

Having said that, you might find the the function getXPath from diffxml useful: http://diffxml.cvs.sourceforge.net/viewvc/diffxml/diffxml/src/java/org/diffxml/diffxml/fmes/NodeOps.java?view=markup

It will return an XPath of the form /node()[4]/node()[2] etc.

UPDATE: As diffxml is GPL licensed and getXPath takes a bit of extracting, I released it as XPathGen on github: https://github.com/amouat/XPathGen under an Apache licence.

link|improve this answer
There might not be a canonical way to represent a node, but you can always do it accurately by position. – lwburk Dec 7 '11 at 15:17
@lwburk that's what the linked code does :) – Adrian Mouat Dec 7 '11 at 15:36
I use code just like this for debugging purposes. Good stuff. – Jakrabbit Dec 7 '11 at 15:41
Great solution! Thanks, - – Dave Dec 7 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

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