Hem*_*dav 0 c++ json nlohmann-json jsonparser
我正在尝试使用 nlohmann 的 json.hpp 解析 JSON 结构。但我不会从字符串创建 JSON 结构。我已经尝试了所有方法,但仍然失败。
我的要求是:
1) 从字符串创建 JSON 结构。
2)从中找到“statusCode”的值。
经过这么长时间的尝试,我真的很怀疑,nlohmann的json解析器是否支持嵌套JSON。
#include "json.hpp"
using namespace std;
int main(){
// giving error 1
nlohmann::json strjson = nlohmann::json::parse({"statusResp":{"statusCode":"S001","message":"Registration Success","snStatus":"Active","warrantyStart":"00000000","warrantyEnd":"00000000","companyBPID":"0002210887","siteBPID":"0002210888","contractStart":"00000000","contractEnd":"00000000"}});
// Giving error 2:
auto j= "{
"statusResp": {
"statusCode": "S001",
"message": "Registration Success",
"snStatus": "Active",
"warrantyStart": "20170601",
"warrantyEnd": "20270601",
"companyBPID": "0002210887",
"siteBPID": "0002210888",
"contractStart": "00000000",
"contractEnd": "00000000"
}
}"_json;
// I actually want to get the value of "statusCode" code from the JSOn structure. But no idea how to parse the nested value.
return 1;
}
Run Code Online (Sandbox Code Playgroud)
以下是两种初始化的错误:
//ERROR 1:
test.cpp: In function 'int main()':
test.cpp:17:65: error: expected '}' before ':' token
nlohmann::json strjson = nlohmann::json::parse({"statusResp":{"statusCode":"S001","message":"Registration Success","snStatus":"Active","warrantyStart":"00000000","warrantyEnd":"00000000","companyBPID":"0002210887","siteBPID":"0002210888","contractStart":"00000000","contractEnd":"00000000"}});
// ERROR 2:
hemanty@sLinux:/u/hemanty/workspaces/avac/cb-product/mgmt/framework/src/lib/libcurl_cpp$g++ test.cpp -std=gnu++11
test.cpp: In function 'int main()':
test.cpp:27:17: error: expected '}' before ':' token
"statusResp": {
Run Code Online (Sandbox Code Playgroud)
由于"是字符串文字的开始和结束字符,因此如果不在字符串前面"添加字符,则不能在字符串中包含字符。\
std::string str = " "statusCode":"5001" "; //This does not work
std::string str = " \"statusCode\":\"5001\" "; //This will work
Run Code Online (Sandbox Code Playgroud)
当您想要制作包含很多内容的字符串时,一个更简单的选择"是使用R"" 字符串文字。然后就可以像这样写了。
std::string str = R"("statusCode":"5001")";
Run Code Online (Sandbox Code Playgroud)
如果我们现在将其转移到您的 json 示例,则解析字符串的正确方法将是以下之一。
auto j3 = json::parse("{ \"happy\": true, \"pi\": 3.141 }");
// and below the equivalent with raw string literal
auto j3 = json::parse(R"({"happy": true, "pi": 3.141 })");
//Here we use the `_json` suffix
auto j2 = "
{
\"happy\": true,
\"pi\": 3.141
}"_json;
// Here we combine the R"" with _json suffix to do the same thing.
auto j2 = R"(
{
"happy": true,
"pi": 3.141
}
)"_json;
Run Code Online (Sandbox Code Playgroud)
示例取自自述文件