C++ 的 XML 解析器它将 xml 节点转换为 C++物体

发布于 2024-12-03 03:29:52 字数 199 浏览 0 评论 0原文

我需要解析一个 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 技术交流群。

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

发布评论

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

评论(3

违心° 2024-12-10 03:29:52

一个非常好的库是 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.

绝情姑娘 2024-12-10 03:29:52

一种非常非常容易使用的方法是 mini xml(缩写为 mxml)

http://www.minixml.org/

A very very easy one to use is mini xml (abbreviated to mxml)

http://www.minixml.org/

轻许诺言 2024-12-10 03:29:52

我通常为此使用 libxml2 - 诚然它是 C,但确实创建了一棵对象树。

I'm normally using libxml2 for this - admittedly it's C, but does create a tree of objects.

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