DOM getElementsByTagName() 返回具有 NULL 值的节点
我有一个 XML 文件,如下所示。
当我使用 getElementsByTagName("LEVEL2_ID") 时,我确实得到了一个带有 Nodes
的 NodeList
,但这些节点具有 NULL 值(换句话说,每个结果节点上的 getNodeValue()
将返回 NULL
)。这是为什么呢?我需要获取每个节点的内容值,在本例中为 2000
。
XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<Date>01/17/2012</Date>
<LEVEL1>
<LEVEL1_ID>1000</LEVEL1_ID>
<LEVEL2>
<LEVEL2_ID>2000</LEVEL2_ID>
</LEVEL2>
</LEVEL1>
</Root>
在 Java 中,打印通过 getElementsByTagName() 获取的第一个节点的 Value 返回 NULL:
NodeList nodes = document.getElementsByTagName("LEVEL2_ID");
System.out.println("Value of 1st node: " + nodes.item(0).getNodeValue());
I have an XML file as follows.
When I use getElementsByTagName("LEVEL2_ID")
, I do get a NodeList
with Nodes
, but those Nodes have NULL values (in other words, getNodeValue()
on each result node will return NULL
). Why is this? I need to get the contents value of each node, in this case 2000
.
XML:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root>
<Date>01/17/2012</Date>
<LEVEL1>
<LEVEL1_ID>1000</LEVEL1_ID>
<LEVEL2>
<LEVEL2_ID>2000</LEVEL2_ID>
</LEVEL2>
</LEVEL1>
</Root>
In Java, printing the Value of the 1st node obtained with getElementsByTagName() returns NULL:
NodeList nodes = document.getElementsByTagName("LEVEL2_ID");
System.out.println("Value of 1st node: " + nodes.item(0).getNodeValue());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是在规范中定义的。元素节点的
nodeValue
为null
。如果要获取每个节点的文本内容,则必须迭代所有文本节点后代并连接它们的值。
也就是说,您使用的 API 实现可能提供一种直接检索元素文本内容的方法。例如,PHP 的
DOMNode
有一个$ textContent
属性。如果像您的情况一样,该元素的唯一子节点实际上是您想要的文本节点,您可以简单地访问它的值:
That is defined in the specification. Element nodes'
nodeValue
isnull
.If you want to get the text content of each node, you have to iterate over all text node descendants and concatenate their value.
That said, the API implementation you are using might offer a method to directly retrieve the text content of an element. For example, PHP's
DOMNode
has a$textContent
property.If, as in your case, the element's only child is actually the text node you want, you can simply access its value:
如果您有一个元素节点并想要获取其内部文本,请使用
getTextContent()
,如下所示:If you have an element node and want to get its inner text, use
getTextContent()
like this: