Мой код ниже сбой (Debug Error! R6010 abort() был вызван). Вы можете мне помочь? Я также хотел бы знать, как инициализировать объект json из строкового значения.
Json::Value obj;
obj["test"] = 5;
obj["testsd"] = 655;
string c = obj.asString();
Мой код ниже сбой (Debug Error! 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
устарела, как указано в документации. Вот как использовать Json::CharReader
и 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;
Слава Паоло ответить здесь: Разбор строки JSON с jsoncpp
Пожалуйста, покажите мне результат тоже.