如何使用 ptree(boost) 遍历 XML 文件中的同名子级?

Posted

技术标签:

【中文标题】如何使用 ptree(boost) 遍历 XML 文件中的同名子级?【英文标题】:How to iterate over children with the same name in an XML file using ptree(boost)? 【发布时间】:2013-11-07 08:10:45 【问题描述】:

我有一个这样的 XML 文件:

 <shape name="rightellipsoid" type="instance" id="eggBase">
    <transform name="xform1">
      <translate>2.5 1.5 -4.0</translate>
      <rotate axis="X">90.0</rotate>
      <scale>1.0 0.5 1.5</scale>
      <rotate axis="Y">95.0</rotate>
    </transform>
  </shape>

我可以使用以下方法检索 translate 和 scale 的值:

boost::optional<Vector3D> scale = v.second.get_optional<Vector3D>("scale");

注意:Vector3D 是我的数据类型

但是如果我对我的旋转节点做同样的事情,它总是会返回第一个值。 如何获取第二个旋转节点的值?

【问题讨论】:

【参考方案1】:

试试这样的:

std::string rotate_x, rotate_y;
boost::property_tree::ptree pt;

BOOST_FOREACH( ptree::value_type const& val, pt.get_child("shape.transform") ) 

    if(val.first == "rotate") 
    
        std::string temp = val.second.get_child("<xmlattr>.axis").data();

        if(temp == "X") rotate_x = val.second.data();
        if(temp == "Y") rotate_y = val.second.data();
    

【讨论】:

以上是关于如何使用 ptree(boost) 遍历 XML 文件中的同名子级?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 boost ptree 删除 xml 属性?

如何使用 Boost ptree C++ 解析其值中包含 HTML 标记的 XML

如何使 boost ptree 以相同的方式解析 xml 和 json?

Boost Property ptree:boost write_xml 在 xml 文件的子元素中添加 unicode 0x0 字符

c++ boost xml解析器ptree.get函数——不接受节点名中的空格

我们如何在另一个 boost ptree 中插入一个 boost ptree 作为节点?