使用jsoncpp创建字符串的JSON数组

时间:2013-09-19 11:17:06

标签: c++ arrays json jsoncpp

我需要在将新文件写入磁盘时更新索引(采用JSON格式),并且由于文件已经分类,我使用的是具有这种结构的对象:

{ "type_1" : [ "file_1", "file_2" ], "type_2" : [ "file_3", "file_4" ] }

我认为这对jsoncpp来说是一件容易的事,但我可能会遗漏一些东西。

我的代码(简化):

std::ifstream idx_i(_index.c_str());
Json::Value root;
Json::Value elements;
if (!idx_i.good()) { // probably doesn't exist
    root[type] = elements = Json::arrayValue;
} else {
    Json::Reader reader;
    reader.parse(idx_i, root, false);
    elements = root[type];
    if (elements.isNull()) {
        root[type] = elements = Json::arrayValue;
    }
    idx_i.close();
}
elements.append(name.c_str()); // <--- HERE LIES THE PROBLEM!!!
std::ofstream idx_o(_index.c_str());
if (idx_o.good()) {
    idx_o << root;
    idx_o.close();
} else {
    Log_ERR << "I/O error, can't write index " << _index << std::endl;
}

所以,我打开文件,读取JSON数据工作,如果我找不到任何,我创建一个新数组,问题是:当我尝试向数组追加一个值时,它不会work,数组保持为空,并写入文件。

{ "type_1" : [], "type_2" : [] }

尝试调试我的代码和jsoncpp调用,一切似乎都没问题,但数组总是空的。

1 个答案:

答案 0 :(得分:6)

问题出现在这里:

elements = root[type];

因为您在调用此JsonCpp API时正在创建root[type]副本

Value &Value::operator[]( const std::string &key )

因此根本不修改root文件。在您的情况下,避免此问题的最简单方法是不使用elements变量:

root[type].append(name.c_str());