getElementsByTagName 不起作用

发布于 2024-12-04 09:29:17 字数 520 浏览 0 评论 0原文

我有下一个简单的代码部分:

String test = "<?xml version="1.0" encoding="UTF-8"?><TT_NET_Result><GUID>9145b1d3-4aa3-4797-b65f-9f5e00be1a30</GUID></TT_NET_Result>"

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();        
Document doc = dbf.newDocumentBuilder().parse(new InputSource(new StringReader(test)));                    
NodeList nl = doc.getDocumentElement().getElementsByTagName("TT_NET_Result");

问题是我没有得到任何结果 - 节点列表变量“nl”为空。 可能出什么问题了?

I have next simple part of code:

String test = "<?xml version="1.0" encoding="UTF-8"?><TT_NET_Result><GUID>9145b1d3-4aa3-4797-b65f-9f5e00be1a30</GUID></TT_NET_Result>"

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();        
Document doc = dbf.newDocumentBuilder().parse(new InputSource(new StringReader(test)));                    
NodeList nl = doc.getDocumentElement().getElementsByTagName("TT_NET_Result");

The problem is that I don't get any result - nodelist variable "nl" is empty.
What could be wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

歌入人心 2024-12-11 09:29:17

您要求提供文档元素下的元素,但 TT_NET_Result 是文档元素。如果你只是打电话

NodeList nl = doc.getElementsByTagName("TT_NET_Result");

那么我怀疑你会得到你想要的结果。

You're asking for elements under the document element, but TT_NET_Result is the document element. If you just call

NodeList nl = doc.getElementsByTagName("TT_NET_Result");

then I suspect you'll get the result you want.

寻找我们的幸福 2024-12-11 09:29:17

这是对这个老问题的另一个回答。我今天在代码中遇到了类似的问题,实际上我一直在读/写 XML。由于某种原因,我忽略了一个重要事实。如果您想使用

NodeList elements = doc.getElementsByTagNameNS(namespace,elementName);

您需要使用名称空间感知的工厂来解析您的文档。

private static DocumentBuilderFactory getFactory() {
    if (factory == null){
        factory = DocumentBuilderFactory
                .newInstance();
        factory.setNamespaceAware(true);
    }
    return factory;
}

Here's another response to this old question. I hit a similar issue in my code today and I actually read/write XML all the time. For some reason I overlooked one major fact. If you want to use

NodeList elements = doc.getElementsByTagNameNS(namespace,elementName);

You need to parse your document with a factory that is namespace-aware.

private static DocumentBuilderFactory getFactory() {
    if (factory == null){
        factory = DocumentBuilderFactory
                .newInstance();
        factory.setNamespaceAware(true);
    }
    return factory;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文