Json-cpp - 如何从字符串初始化并获取字符串值?

Json-cpp - how to initialize from string and get string value?

我下面的代码崩溃了(调试错误!已调用 R6010 abort())。你能帮助我吗?我还想知道如何从字符串值初始化 json 对象。

Json::Value obj;
obj["test"] = 5;
obj["testsd"] = 655;
string c = obj.asString();

你好很简单:

1 - 您需要一个 CPP JSON 值对象 (Json::Value) 来存储您的数据

2 - 使用 Json Reader (Json::Reader) 读取 JSON 字符串并解析为 JSON 对象

3 - 做你的事:)

这是执行这些步骤的简单代码:

#include <stdio.h>
#include <jsoncpp/json/json.h>
#include <jsoncpp/json/reader.h>
#include <jsoncpp/json/writer.h>
#include <jsoncpp/json/value.h>
#include <string>

int main( int argc, const char* argv[] )
{

    std::string strJson = "{\"mykey\" : \"myvalue\"}"; // need escape the quotes

    Json::Value root;   
    Json::Reader reader;
    bool parsingSuccessful = reader.parse( strJson.c_str(), root );     //parse process
    if ( !parsingSuccessful )
    {
        std::cout  << "Failed to parse"
               << reader.getFormattedErrorMessages();
        return 0;
    }
    std::cout << root.get("mykey", "A Default Value if not exists" ).asString() << std::endl;
    return 0;
}

编译:g++ YourMainFile.cpp -o main -l jsoncpp

希望对您有所帮助 ;)

Json::Reader is deprecated. Use Json::CharReader and Json::CharReaderBuilder 改为:

std::string strJson = R"({"foo": "bar"})";

Json::CharReaderBuilder builder;
Json::CharReader* reader = builder.newCharReader();

Json::Value json;
std::string errors;

bool parsingSuccessful = reader->parse(
    strJson.c_str(),
    strJson.c_str() + strJson.size(),
    &json,
    &errors
);
delete reader;

if (!parsingSuccessful) {
    std::cout << "Failed to parse the JSON, errors:" << std::endl;
    std::cout << errors << std::endl;
    return;
}

std::cout << json.get("foo", "default value").asString() << std::endl;

感谢 p-a-o-l-o 在这里的回答: