我有json字符串:
String jsonString = "{\"first\":{\"1\":[{\"id\":1,\"name\":\"jo\"}]}}";
JSONObject users = new JSONObject(response);
JSONArray sub = users.getJSONArray("first");
但是在JSONArray子我有错误:
org.json.JSON.typeMismatch上的org.json.JSONException
但是如果我有:
String jsonString = "{\"first\":{\"1\":[{\"id\":1,\"name\":\"other\"}]}}";
JSONObject users = new JSONObject(response);
JSONArray sub = users.getJSONArray("first");
它没有任何错误。
为什么用字符串"jo"我有一个错误?
繁花不似锦
海绵宝宝撒
慕运维8079593
相关分类