分段故障读取json文件

时间:2013-10-04 16:25:45

标签: c++ json json-c

我需要读取json文件中包含的信息,如下所示:

{"first":10, "second":"0", "P1":"1.e-20","P2":"1000","P3":"1000","P4":"1000","P5":"1"}

由于我没有这个问题的经验,我开始玩这些行下面的短代码。它确实编译没有问题,但它在执行时返回分段错误。文件general.json位于同一文件夹中。如果我评论最后一行,json文件中包含的信息将正确打印在屏幕上。谁能告诉我我做错了什么?

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <fstream> // fstream.h in old versions of g++
#include <iostream>  //para cout
#include <sstream>
#include <json/json.h>

using namespace std;

int main() {
struct json_object *new_json, *json_arr, *json_reg, *json_field;
string line;
stringstream jsonfile;

ifstream json("file.json", ios::in); 
{getline(json, line); do {jsonfile << line;} while (getline(json, line));}
json.close();
cout << jsonfile.str().c_str();
new_json=json_tokener_parse(jsonfile.str().c_str());
json_field=json_object_object_get(json_reg, "first");
}

1 个答案:

答案 0 :(得分:1)

您正在使用json_reg指针而不初始化它,该函数会取消引用它。您(很可能)使用json-c其中:

  • json_object_object_get在对象上调用json_object_object_get_ex

  • json_object_object_get_ex switch(jso->o_type)取消引用无效指针