String转JSON Object

System.out.println("post方法:"+postString);

JSONObject jsonObject = JSONObject.parseObject(postString);
//获取success的值
String postResult = jsonObject.getString("success");

你可能感兴趣的:(json)