处理json串
针对接口返回json串的情况处理
//http返回
HttpClientResult result = httpClientUtils.doPost(sendUrl,params);
//返回结果是json串
String content = result.getContent();
//json串转JSON对象
JSONObject jsonobj = JSONObject.parseObject(content);
String code = jsonobj.getString("code");
String msg= jsonobj.getString("msg");
if ("1".equals(code)){
return msg;
}else if ("0".equals(code)){
return "Success!";
}