Boost .ini文件解析器 - 多个部分名称

时间:2013-03-02 19:17:57

标签: c++ ini boost-propertytree

我使用boost :: property_tree来解析ini文件。

我希望能够执行以下操作:

DATA.INI:

[electron]
position=0,0,0
velocity=0,0,0

[proton]
position=1,0,0
velocity=0,0,0

[proton]
position=-1,0,0
velocity=0,0,0

目前该程序正在运行,并出现此错误:duplicate section name显然因为有两个[proton]部分。

有没有其他方法来解析这样的文件?我应该使用xml文件吗?

1 个答案:

答案 0 :(得分:3)

如果您需要,这是一个简单的读者:

<强> XML的文件:

<?xml version="1.0" encoding="utf-8"?>
<data>
  <electron>
    <position>0,0,0</position>
    <velocity>0,0,0</velocity>
  </electron>
  <proton>
    <position>1,0,0</position>
    <velocity>0,0,0</velocity>
  </proton>
  <proton>
    <position>-1,0,0</position>
    <velocity>0,0,0</velocity>
  </proton>
</data>

<强> JSON文件:

{
    "electron": {
        "position": "0,0,0",
        "velocity": "0,0,0"
    },
    "proton": {
        "position": "1,0,0",
        "velocity": "0,0,0"
    },
    "proton": {
        "position": "-1,0,0",
        "velocity": "0,0,0"
    }
}

阅读XML&amp; JSON质子节点:

#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <algorithm>
#include <iostream>

int main()
{
    // XML
    {
        boost::property_tree::ptree pt;
        boost::property_tree::read_xml("prop_data.xml", pt);

        for(auto& el : pt.get_child("data.proton"))
        {
            std::cout << el.second.data() << std::endl;
        }
    }

    // JSON
    {
        boost::property_tree::ptree pt;
        boost::property_tree::read_json("prop_data.json", pt);

        for(auto& el : pt.get_child("proton"))
        {
            std::cout << el.second.data() << std::endl;
        }
    }

    return 0;
}

修改 可以使用JSON数组,例如:

...
"position": [-1, 0, 0],
...

读取此数组值的代码:

    for(auto& el : pt.get_child("proton"))
    {
        std::cout << el.first << std::endl;
        for(auto& a : el.second) {
            std::cout << a.second.data() << std::endl;
        }

        std::cout << std::endl;
    }

这里el.second只是一个ptree,您可以使用for循环遍历它。