web-dev-qa-db-fra.com

Json-cpp - comment initialiser à partir d'une chaîne et obtenir une valeur de chaîne?

Mon code ci-dessous se bloque (Erreur de débogage! R6010 abort () a été appelé). Pouvez-vous m'aider? Je voudrais également savoir comment initialiser l'objet json à partir d'une valeur de chaîne.

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

Bonjour c'est assez simple:

1 - Vous avez besoin d'un objet de valeur CPP JSON (Json :: Value) pour stocker vos données

2 - Utilisez un lecteur Json (Json :: Reader) pour lire une chaîne JSON et analyser en un objet JSON

3 - Faites vos trucs :)

Voici un code simple pour effectuer ces étapes:

#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;
}

Pour compiler: g ++ YourMainFile.cpp -o main -l jsoncpp

J'espère que ça aide;)

28
Irineu Antunes

Json::Reader est obsolète, comme indiqué dans le documentation . Voici comment utiliser Json::CharReader et 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;

Félicitations à la réponse de p-a-o-l-o ici: Analyse de la chaîne JSON avec jsoncpp

9
martias