首页 > 解决方案 > 将具有 xml 属性的子树添加到 boost 属性树

问题描述

boost::ptree用于创建 xml 文件

ptree tree;
ptree & subtree = tree.add("sometag", "");
ptree & subsubtree = tree.add("someothertag", "");
...
write_xml(stfilename, declarationTree, std::locale(),
          xml_writer_settings<std::string>(' ', 4));

这将创建以下 XML 文件

<sometag>
   <someothertag>
   ...
   </someothertag>
</sometag>

到目前为止一切顺利,但我需要将 xml 属性放入<sometag>标签中。

而不是这个:

<sometag>
  ...

我要这个:

<sometag someattribute="somevalue">
  ...

如何指定属性?boost 文档对此非常不清楚。

标签: c++boostptree

解决方案


您应该使用<xmlattr>特殊的子节点命名空间:

#include <boost/property_tree/xml_parser.hpp>
#include <iostream>

int main() {
    boost::property_tree::ptree tree;
    tree.put("sometag.someothertag.<xmlattr>.someattribute", "somevalue");

    write_xml(std::cout, tree,
            boost::property_tree::xml_writer_settings<std::string>(' ', 4));
}

印刷

<?xml version="1.0" encoding="utf-8"?>
<sometag>
    <someothertag someattribute="somevalue"/>
</sometag>

推荐阅读