JSON

//Test write json
    Json::Value rooter;
    Json::FastWriter w;
    rooter["isTest"] = false;
    rooter["isAndy"] = true;
    std:string json_string = w.write(rooter);

//Test parse json
    std::string json_string = #json.string#;
    Json::Reader r;
    Json::Value root;
    r.parse(json_string, root, true);
    string str_linus = root["str_linus"].asString();
    bool iscalliope = root["iscalliope"].asBool();
posted @ 2016-05-17 16:12  AndyHu518  阅读(149)  评论(0编辑  收藏  举报