91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中Json的處理方法有哪些

發布時間:2022-06-18 15:31:35 來源:億速云 閱讀:402 作者:iii 欄目:開發技術

這篇文章主要介紹“Java中Json的處理方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Java中Json的處理方法有哪些”文章能幫助大家解決問題。

    Java Json的各種處理

    一、net.sf.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);
    }

    二、com.alibaba.fastjson

    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>>() {});

    Java常用json處理

    // 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的處理方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    崇礼县| 竹山县| 上犹县| 宜黄县| 新邵县| 阿鲁科尔沁旗| 翁源县| 阜新市| 岑巩县| 蛟河市| 南溪县| 同德县| 潢川县| 武山县| 禹城市| 兴国县| 平邑县| 济南市| 新郑市| 荣成市| 庆云县| 蚌埠市| 交城县| 赣榆县| 开原市| 彩票| 泸州市| 绥江县| 谷城县| 太康县| 五原县| 毕节市| 吉安市| 商洛市| 宜丰县| 西和县| 海阳市| 夏河县| 秦皇岛市| 镇远县| 吉木乃县|