fastjson之JSONObjectJSONArray

Posted 仅此而已-远方

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fastjson之JSONObjectJSONArray相关的知识,希望对你有一定的参考价值。

JSONObject,JSONArray是JSON的两个子类。

 

首先我们来看JSONObject源码:

会发现JSONObject是继承Map<String, Object>,并且都是使用的Map中的方法。可以说JSONObject相当于Map<String, Object>

看个具体的列子:

  /**
     * 将Map转成JSONObject,然后添加元素,输出
     */
    @Test
    public void testJsonObject() {
        Map<String, Object> testMap = new HashMap<>();
        testMap.put("key1", "value1");
        testMap.put("key2", "value2");
        
        JSONObject jsonObj = new JSONObject(testMap);
        jsonObj.put("key3", "value3");
        System.out.println(jsonObj);
        System.out.println(jsonObj.get("key2"));
    }

运行结果:

{"key1":"value1","key2":"value2","key3":"value3"}
value2

 

看JSONArray的源码:

会发现JSONArray是继承List<Object>,并且都是使用的List中的方法。可以说JSONArray相当于List<Object>

具体的列子:

  /**
     * 将List对象转成JSONArray,然后输出
     */
    @Test
    public void testJsonArray() {
        List<Object> list = new ArrayList<>();
        list.add("home");
        list.add(60);
        list.add(true);
        list.add(new XwjUser(1, "Hello World", new Date()));
        
        JSONArray jsonArr = JSONArray.parseArray(JSON.toJSONString(list));
        System.out.println(jsonArr);
    }

运行结果:

["home",60,true,{"id":1,"message":"Hello World","sendTime":1525237337937}]

 

以上是关于fastjson之JSONObjectJSONArray的主要内容,如果未能解决你的问题,请参考以下文章

JSON 之FastJson解析

JSON 之FastJson解析

JSON 之FastJson解析

spring boot 之fastJson的使用

Json应用案例之FastJson

alibaba/fastjson 之 JSONPath