GWT - XML 解析器 - 无法读取标签
我刚刚遇到了 gwt xml 解析器的问题
,事情是......
我有类似 xml
<?xml version="1.0" ?>
<A>
<B>
<C>C1</C>
<C>C2</C>
<C>C3</C>
</B>
<B></B>
</A>
<A>
</A>
和 gwt 代码......
Document document = XMLParser.parse(xml);
NodeList nl= document.getElementsByTagName("A");
Window.alert("threads length = "+nl.getLength());
出于某种原因 nl.getLength() 返回 0 这意味着没有 A 标签:( 为什么会发生这种情况以及如何发生 获取 xml 结构?
正确
I just faced a problem with gwt xml parser
the thing is ...
I have xml like
<?xml version="1.0" ?>
<A>
<B>
<C>C1</C>
<C>C2</C>
<C>C3</C>
</B>
<B></B>
</A>
<A>
</A>
and gwt code...
Document document = XMLParser.parse(xml);
NodeList nl= document.getElementsByTagName("A");
Window.alert("threads length = "+nl.getLength());
for some reason nl.getLength() returns 0 that means there is no A tag :( Why that may happen and how to get xml structure correctly?
Any useful comment is appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,结束这个问题...
严格来说,一份 XML 文档只能包含一个顶级(或“根”)元素节点。那有两个。
对于这个格式错误的 XML 输入,
XMLParser
显然“无法正常工作”<-- 请随时在此处或评论中添加详细信息 :)快乐编码。
So to close this question...
Strictly speaking, an XML document can only contain one top-level (or "root") element node. That has two.
XMLParser
will apparently "not work correctly" for this malformed XML input <-- please feel free to add details here or in a comment :)Happy coding.