0

我需要读取 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");
}
4

1 回答 1

1

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

  • json_object_object_get调用json_object_object_get_ex对象

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

于 2013-10-04T16:27:35.047 回答