Json::Value root;
root["Ret"] = Json::Value(0);
root["Err"] = Json::Value("");
Json::Value root2;
root2["Ret2"] = Json::Value(0);
root2["Err2"] = Json::Value("");
root["root2"] = root2;
Json::Value rootlist;
for (int i = 0; i < 5; i++)
{
Json::Value temp;
temp["hello"] = Json::Value(i);
rootlist.append(temp);
}
root["array"] = rootlist;
sResult = root.toStyledString();
json 示例
最新推荐文章于 2024-09-20 11:42:37 发布