gpt4 book ai didi

c++ - xerces - 处理标签名称中的命名空间

转载 作者:太空宇宙 更新时间:2023-11-04 13:25:46 25 4
gpt4 key购买 nike

我有一个基于 XSD 的 XML,看起来像这样:

<ns1:root xmlns:ns1="ROOT_NAMESPACE">
<ns1:thing1>abc</ns1:thing>
<ns1:thing2>def</ns1:thing>
</ns1:root>

我使用的是 C++,我可以成功读取 XML 并对其进行解析。但是我想使用不带命名空间的标签名称获取我的元素,例如 thing1thing2,但目前看来我需要它,例如 ns1:thing1。 (我正在尝试使用 getElementsByTagName 方法。)如何让解析器忽略命名空间?

我的解析器设置是:

myParser.setValidationScheme(XercesDOMParser::Val_Always);
myParser.setExternalSchemaLocation(xsdLocation);
myParser.setDoNamespace(true);
myParser.setDoSchema(true);
myParser.setValidationSchemaFullChecking(true);

最佳答案

您必须创建一个新文档并在没有命名空间的情况下重建整个 xml 树!递归遍历树并仅使用忽略前缀的 getLocalName() 方法构建新元素应该很容易。

关于c++ - xerces - 处理标签名称中的命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33423557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com