c++ dom解析问题
大家好 我是 xercses C++dom 解析器的新手。谁能告诉我
我们可以编写自己的 getElementsBytagName、GetNodeValue 等函数吗? 如何编写这些函数并在我的代码中使用它们? 谁能给我解释一下Dom解析的过程吗?
hi every body
i'm new to xercses C++dom parser.can anyone tell me
can we write our own getElementsBytagName,GetNodeValue etc function ?
how to write these function and use them in my code ?
can anybody explain me the process of Dom parsing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xerces
提供了getElementsBytagName
等方法,以便您可以在应用程序中使用它们。查看 xerces 编程指南,您可以在那里找到如何
解析
xml 文件以及如何获取元素和属性。xerces
provides methods likegetElementsBytagName
so you can use them in your application.Have a look at xerces programming guide you can find there how to
parse
xml file and how to get elements and attributes.