GWT - XML 解析器 - 无法读取标签

发布于 2024-12-12 20:00:07 字数 546 浏览 2 评论 0原文

我刚刚遇到了 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 技术交流群。

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

发布评论

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

评论(1

浴红衣 2024-12-19 20:00:07

因此,结束这个问题...

严格来说,一份 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文