NodeListから到達するツリーをたどる必要があります。すべてのノードを順番にトラバースするアルゴリズムが必要です。おそらく詳細ですが、それを実装する方法はありません。再帰が必要だと思います。誰でも助けることができますか?
コードの一部は次のとおりです。 NodeList nodeLista = documento.getElementsByTagName("html");
for (int s = 0; s < nodeLista.getLength(); s++) {
Node Raiz = nodeLista.item(s);
....
for (int h = 0; h < nodeLista.getLength(); h++) {
//Level of depth 1.
Node Primer_Hijo = nodeLista.item(h); // In the first iteration for the HEAD will enter in the second iteration enter the BODY.
//Level of depth 2.
Element SegundoElemento = (Element) Primer_Hijo;
NodeList ListadeNodos2 = SegundoElemento.getChildNodes();
.....