当你有命名空间时 Android XML DOM 解析?

发布于 2024-11-29 22:50:50 字数 489 浏览 1 评论 0原文

当您的 xml 节点具有如下命名空间时:

<ns:abc>

then

getElementsByTagName("abc");

会失败,但

getElementsByTagName("ns:abc");

可以工作。但问题是我不知道选择的名称空间前缀是什么。对我来说也是如此,

getElementsByTagNameNS("*", "abc");

两者

getElementsByTagNameNS("http://abcnamespace.com", "abc");

都返回 null。

如果对设备感兴趣,我在 Nook 上使用 CM7。我不想使用 SAX,任何其他干净的方式来读取节点列表。

When you have xml nodes with namespaces like:

<ns:abc>

then

getElementsByTagName("abc");

fails, but

getElementsByTagName("ns:abc");

works. But the issue is I don't know what is the namespace prefix chosen. Also for me,

getElementsByTagNameNS("*", "abc");

and

getElementsByTagNameNS("http://abcnamespace.com", "abc");

both return null.

If device is of interest, I am using CM7 on Nook. I don't want to use SAX, any other clean way to read the node lists.

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

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

发布评论

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

评论(1

伤痕我心 2024-12-06 22:50:50

DocumentBuilderFactory.setNamespaceAware(true) 应该可以解决您的问题。

DocumentBuilderFactory.setNamespaceAware(true) should fix your problem.

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