[Android] 使用GSON解析json成Bean
解析jsonObject
JSONObject data = jsonObject.getJSONObject("data"); Gson gson = new Gson(); Type type = new TypeToken<Bean>(){}.getType(); Bean bean = gson.fromJson(String.valueOf(data), type);
解析JSONArray
JSONArray array = jsonObject.getJSONArray("data"); Gson gson = new Gson(); Type type = new TypeToken<List<Bean>>() {}.getType(); List list = gson.fromJson(String.valueOf(array), type);
NOI-001—《C++编程及竞赛训练》
NOI-002—《普及组竞赛强化训练课程》
NOI-003—《初级算法课程》