主要
使用json 的Json::Reader parse()接口
来进行判断:
parse()
接口:将json格式的字符串解析到json对象中,解析成功返回true,解析失败返回false;
code:
// exception handler
Json::Value rootValue;
Json::Reader reader;
bool isJson = reader.parse(Info, rootValue);
if (!isJson) {
MW_LOG_D("is not json string!!!");
return -1;