C++ 的 XML 解析器它将 xml 节点转换为 C++物体
我需要解析一个 XML 文件,并在我的应用程序中创建一个节点树,然后将其用于其他目的,例如搜索等。
节点结构本质上是同质的,即它只有几个字段/属性,例如 1.Id 2.Data 3.Children。甚至 xml 节点也会类似,即 id、data 和 Children
任何人都可以帮助我使用哪个库我应该使用它来创建这样的东西吗?
谢谢
Ive a requirement to parse a XML file, and create a tree of nodes inside my application, which then will be used for other purposes like searching and stuff.
The node structure is homogeneous in nature, i.e it will have only a few fields/attricutes like 1.Id 2.Data 3.Children.Even the xml node will be similar, i.e id, data and children
Can anyone help me with which library should I use so as to create something like this??
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
一个非常好的库是 Boost.PropertyTree。看一下这个示例,了解如何将其与 XML 一起使用:
► http://www.boost.org/doc/ libs/1_41_0/doc/html/boost_propertytree/tutorial.html
属性树本身与 XML 文件无关。如果你做得正确,你的对象也将与 XML 无关,这使得你的代码更加灵活。
A very good library for this is Boost.PropertyTree. Look at this example of how to use it with XML:
► http://www.boost.org/doc/libs/1_41_0/doc/html/boost_propertytree/tutorial.html
The property tree itself is agnostic of the XML file. If you do this right, your objects will also be agnostic of XML, which makes your code more flexible.
一种非常非常容易使用的方法是 mini xml(缩写为 mxml)
http://www.minixml.org/
A very very easy one to use is mini xml (abbreviated to mxml)
http://www.minixml.org/
我通常为此使用 libxml2 - 诚然它是 C,但确实创建了一棵对象树。
I'm normally using libxml2 for this - admittedly it's C, but does create a tree of objects.