public static String getElementXpath(DOMElement elt){
String path = "";
for (; elt != null; elt = (DOMElement) elt.getParentNode()){
System.out.println("THIS ONE " + path);
}
System.out.println("NEXT ONE " + path);
return path;
}
NEXT ONE doesn't even print. I've tried adding anything after the for loop but they don't seem to be running. Shouldn't there be exception that is raised that I can catch? My main method which executes the function getElementXpath throws Exception. I tried removing the throw Exception and same result.
try..catchinsidegetElementXpath()and see whether it catches anything. – julkiewicz Mar 23 '11 at 0:36