getElementsByTagName 不起作用
我有下一个简单的代码部分:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您要求提供文档元素下的元素,但 TT_NET_Result 是文档元素。如果你只是打电话
那么我怀疑你会得到你想要的结果。
You're asking for elements under the document element, but TT_NET_Result is the document element. If you just call
then I suspect you'll get the result you want.
这是对这个老问题的另一个回答。我今天在代码中遇到了类似的问题,实际上我一直在读/写 XML。由于某种原因,我忽略了一个重要事实。如果您想使用
您需要使用名称空间感知的工厂来解析您的文档。
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
You need to parse your document with a factory that is namespace-aware.