一个数组,里面的元素是json类型的数据,格式如:[{"userId" : "wjlvivid"}]
String jsondata = "[{"userId" : "wjlvivid"}]";
JSONArray jsonArray = JSONArray.fromObject(jsondata);
System.out.println(jsonArray.get(0)); //得到的是一个json对象
//如何得到json对象里userId字段的值
JSONObject jsonObj = JSONObject.fromObject(jsonArray.get(0));
String userId = (String) jsonObj.get("userId");
System.out.println("userId-->" + userId);
JSONArray 、JSONObject 用的是
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;