c ++ abort()已在rapidjson上调用

时间:2017-01-15 03:05:18

标签: c++ rapidjson

我正在做一些代码,我需要使用rapidjson来获取json值

首先,我从文件中检索信息

   ifstream  myReadFile;
    myReadFile.open("results.txt");
    string output;
    if (myReadFile.is_open()) {
        while (!myReadFile.eof()) {
            myReadFile >> output;
        }
    }
    myReadFile.close();

results.txt示例

[{"ID":1,"Name":"SomeName","Description":"Pub"}]

然后我使用rapidjson来过滤信息,

const char * json = output.c_str();
Document document;
document.Parse(json);
cout << document["ID"].GetInt();  //Error on the line
cout << document["Name"].GetString());

但我收到此错误:调试错误! abort()被称为

想法?

感谢您的时间

1 个答案:

答案 0 :(得分:1)

你的json是一个数组,但你正试图解析它,因为它不是!

从json字符串中删除方括号,然后你的代码应该工作或解析数组:

for (SizeType i = 0; i<document.Size(); i++)
{
    const rapidjson::Value &data_vec = document[i];
    int id = data_vec["ID"].GetInt();
    std::string name = data_vec["Name"].GetString();
}