No puedo recuperar el valor del texto con Node.getNodeValue()
, Node.getFirstChild().getNodeValue()
o con Node.getTextContent()
.Obtención del valor del texto del nodo XML con Java DOM
Mi XML es como
<add job="351">
<tag>foobar</tag>
<tag>foobar2</tag>
</add>
y estoy tratando de conseguir etiqueta de valor (elemento no textual ir a buscar funciona bien). Mi código Java suena como
Document doc = db.parse(new File(args[0]));
Node n = doc.getFirstChild();
NodeList nl = n.getChildNodes();
Node an,an2;
for (int i=0; i < nl.getLength(); i++) {
an = nl.item(i);
if(an.getNodeType()==Node.ELEMENT_NODE) {
NodeList nl2 = an.getChildNodes();
for(int i2=0; i2<nl2.getLength(); i2++) {
an2 = nl2.item(i2);
// DEBUG PRINTS
System.out.println(an2.getNodeName() + ": type (" + an2.getNodeType() + "):");
if(an2.hasChildNodes())
System.out.println(an2.getFirstChild().getTextContent());
if(an2.hasChildNodes())
System.out.println(an2.getFirstChild().getNodeValue());
System.out.println(an2.getTextContent());
System.out.println(an2.getNodeValue());
}
}
}
Se imprime
tag type (1):
tag1
tag1
tag1
null
#text type (3):
_blank line_
_blank line_
...
Gracias por la ayuda.
Ayudaría si indicara claramente qué contiene exactamente la variable 'n', el documento o el elemento del documento? – AnthonyWJones
he agregado la parte de declaración 'n' – Emilio