linglongbayinhe 2016-11-17
方法1
Object json = new JSONTokener(jsonValue).nextValue();
if (json instanceof JSONObject) {
} else if (json instanceof JSONArray) {
}
方法2
public static boolean isJson(String value) {
try {
new org.json.JSONObject(value);
} catch (org.json.JSONException e) {
return false;
}
return true;
}