jsoncpp-使用
前提
1 |
生成json数据对象
1 | Json::Value send_data; |
json对象转为字符串
转为格式化过的字符串
1 | std::string str = send_data.toStyledString(); |
转为非格式化字符串
1 | Json::FastWriter fast_writer; |
读取json数据
1 | Json::Value send_data; |
1 |
1 | Json::Value send_data; |
1 | std::string str = send_data.toStyledString(); |
1 | Json::FastWriter fast_writer; |
1 | Json::Value send_data; |