public static boolean isJson(String value) {
try {
if (!TextUtils.isEmpty(value)) {
new JSONObject(value);
} else {
return false;
}
} catch (JSONException e) {
return false;
}
return true;
}
网友评论