您好,登錄后才能下訂單哦!
這篇文章主要介紹“Java中Json的處理方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Java中Json的處理方法有哪些”文章能幫助大家解決問題。
1、Json轉Map
JSONObject jsonObject = JSONObject.fromObject(jsonStr); Map<String,Object> map = new HashMap<>(); map.put("code",jsonObject .getInt("code"));
2、Json轉實體
JSONObject jsonObject = JSONObject.fromObject(jsonStr); ArticleForm articleForm = (ArticleForm) JSONObject.toBean(jsonObject , ArticleForm.class);
如果實體中帶有List字段,需要指定泛型
Map<String, Class> classMap = new HashMap<String, Class>(); classMap.put("keywords", String.class); ArticleForm articleForm = (ArticleForm) JSONObject.toBean(data.getJSONObject(i), ArticleForm.class,classMap);
3、Json轉集合
List<ArticleForm> list = new ArrayList<>(); JSONArray data = jsonObject.getJSONArray("data"); if (errorCode == 0 && data != null && !data.isEmpty()) { for (int i = 0; i < data.size(); i++) { Map<String, Class> classMap = new HashMap<String, Class>(); classMap.put("keywords", String.class); ArticleForm articleForm = (ArticleForm) JSONObject.toBean(data.getJSONObject(i), ArticleForm.class,classMap); list.add(articleForm); } }
另外一種:
List<ArticleForm> list = new ArrayList<>(); JSONArray data = jsonObject.getJSONArray("data"); if (errorCode == 0 && data != null && !data.isEmpty()) { Map<String, Class> classMap = new HashMap<String, Class>(); classMap.put("keywords", String.class); list = (List<ArticleForm>) JSONArray.toArray(data, ArticleForm.class,classMap); }
1、Json轉Map
JSONObject jsonObject = JSON.parseObject(jsonStr); Map<String,Object> map = new HashMap<>(); map.put("code",jsonObject .getInt("code"));
2、Json轉實體
ArticleForm articleForm = JSON.parseObject(jsonStr, new TypeReference<ArticleForm>() {});
3、Json轉集合
List<ArticleForm> list = JSON.parseObject(jsonStr,new TypeReference<ArrayList<ArticleForm>>() {});
// String和json的互相轉換 String str = "{\"status\":200,\"message\":\"\",\"data\":{\"KmList\":[\"總分\",\"語文\",\"數學\",\"英語\",\"道德與法治\",\"科學基礎\"]}}"; System.out.println("str:"+str); // JSONArray arrays = JSON.parseArray(str); // string轉jsonArray JSONObject jsonObject = JSON.parseObject(str); // string轉jsonObject System.out.println("jsonObject:"+jsonObject); String s = jsonObject.toJSONString(); // json(object和Array相同)轉string // json轉list<Object>或者object String str1 = "[\"總分\",\"語文\",\"數學\",\"英語\",\"道德與法治\",\"科學基礎\"]"; List<String> list = JSON.parseArray(str1, String.class); // json轉list集合,將String.class改成其他對象.class即可 System.out.println("list:"+JSON.toJSONString(list)); String s1 = JSON.parseObject(JSON.toJSONString("語文"), String.class); // json轉對象,將String.class改成其他對象.class即可 System.out.println("s1:"+s1); // object轉字符串后即可轉jsonObject或者jsonArray // json和map Map<String, Object> map = new HashMap<>(); map.put("xAxis","11"); map.put("yAxis","2222"); String json = JSON.toJSONString(map);//map轉String System.out.println("json:"+json); Map<String, Object> map1 = JSON.parseObject(json, Map.class); // 轉List<Map> parserArray即可 System.out.println("map1:"+map1);
關于“Java中Json的處理方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。