json转换 String转list

String object;//获取的json String 类型
JSONObject json = JSONObject.fromObject(object);
//将String转化为json对象
JSONArray jsonS = JSONArray.fromObject(json);
//将json对象转换为list

———-假若json数据中有多个需要转换的list

String object;
//同样,先获取json数据
JSONObject json = JSONObject.fromObject(object);
//将String转化为json对象
JSONObject jsonStr=JSONObject.fromObject(json.get("result"));
//获取json对象中的某个list
JSONArray jsonS = JSONArray.fromObject(jsonStr);
//将jsonStr对象转换为list

你可能感兴趣的:(java方法,json转换)