在 java DOM 中设置 ATTRIBUTE-NODE 的 LocalName 属性

发布于 2024-12-19 11:29:22 字数 287 浏览 0 评论 0 原文

形式的 XML

我有一个

我需要将 ns2、ns3 等更改为有意义的名称。 然而,在 org.w3c.dom.Node 对象上,虽然存在 getLocalName 方法,但没有可用的 setLocalName 。

请告诉我是否可以进行所需的更改? 即使是 hacky 的也受欢迎,但有具体实现的则更受欢迎。

I have an XML of the form


<root xmlns:ns2="prop" xmlns:ns3="prop2" .... etc
...
..
</root>

I need to change the ns2, ns3 etc. to meaningful names.
However on org.w3c.dom.Node object though there is getLocalName method existing but no setLocalName available.

Please let me know if there is anyway I can do the required change?
Even the hacky ones are welcome though the ones with concrete implementation are preferred.

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

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

发布评论

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

评论(1

街道布景 2024-12-26 11:29:22

改变这些属性不会对你有帮助。这些属性与嵌套在该根节点下的节点使用的前缀相关联。您需要做的是浏览文档并更改这些节点的前缀。

changing those attributes is not going to help you. those attributes are tied to prefixes used by nodes nested under this root node. what you need to do is go through the document and change the prefixes of those nodes.

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