如何根据 libxml 中的relaxNG 模式验证 xml 文档++
我对在 C++ 中解析 xml 以及一般的 xml 相当陌生。 我正在尝试使用 libxml++ 库中的 SAXParser 解析我的文档,但是,我还希望它根据relaxNG 模式验证我的文档。我发现 libxml++ 下面的 libxml2 有一个relaxNG 模块,但我无法找到如何使用它的 libxml++ 绑定。任何线索或代码片段将不胜感激。
I'm rather new to parsing xml in c++ and to xml in general.
I'm trying to parse my document with SAXParser from libxml++ library, however, I would also like it to validate my document against a relaxNG schema. I've found that libxml2, which is underneath libxml++, has a relaxNG module, but I was unable to find out how to use its libxml++ binding. Any clues or code snippets would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过几次尝试后,我发现 libxml++ 中没有relaxNG 包装器,这就是为什么我无法在网上找到任何内容。最后我决定使用 libxml2 来做这件事,只是为了验证目的,然后使用 libxml++ 中的 SAXParser 解析 xml。
After several tries it occured to me, that there is no relaxNG wrapper in libxml++, that is why I was unable to find anything in the net. Finally I decided to do the thing using libxml2, just for validation purposes, and then parse xml using SAXParser from libxml++.