//parcoure des nodes
NodeList nl = n.getChildNodes();
for (int i = 0; i < nl.getLength(); i++) {
XMLNode theNode = (XMLNode) nl.item(i);
if (theNode.getNodeName().compareTo("#text")!=0) {
if (theNode.getNodeName().compareTo("#document")!=0){
infoNode(theNode , xpath + theNode.getNodeName()+"/");
} else {
infoNode(theNode , xpath );
}
}
}