Fastjson JSONArray深度复制

Fastjson JSONArray深度复制

目录

 

目录

Fastjson JSONArray深度复制

1,new JSONArray (Object);

2,AddAll;

3,串行化复制;

4,变成字符串后再变成数组

总结:


如何对fajstjson JSONArray类型的数据进行深度复制,有几种方式呢?

1,new JSONArray (Object);

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {
    testNewJsonArr();
}

public static void testNewJsonArr(){
    System.out.println("====== new JSONArray fail =======");
    JSONArray oneArr = new JSONArray();
    JSONObject one = new JSONObject();
    one.put("one","fish");
    oneArr.add(one);
    JSONArray twoArr = new JSONArray(oneArr);
    System.out.println("init: oneArr: "+ oneArr.toString());
    System.out.println("init: twoArr: "+ twoArr.toString());
    System.out.println("====== add bird =======");
    JSONObject two = new JSONObject();
    two.put("two","bird");
    twoArr.add(two);
    System.out.println("change: oneArr: "+ oneArr.toString());
    System.out.println("change: twoArr: "+ twoArr.toString());
    System.out.println("====== fail =======");
}

        

结果:

====== new JSONArray fail =======

init: oneArr: [{"one":"fish"}]

init: twoArr: [{"one":"fish"}]

====== add bird =======

change: oneArr: [{"one":"fish"},{"two":"bird"}]

change: twoArr: [{"one":"fish"},{"two":"bird"}]

====== fail =======

new JSONArray(Object) 这种方式失败了,详细原因看 new JSONArray(Object)深复制失败的原因

2,AddAll;

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {
    testAddAllJsonArr();
}

public static void testAddAllJsonArr(){
    System.out.println("====== put all success =======");
    JSONArray oneArr = new JSONArray();
    JSONObject one = new JSONObject();
    one.put("one","fish");
    oneArr.add(one);
    JSONArray twoArr = new JSONArray();
    twoArr.addAll(oneArr);
    System.out.println("init: oneArr: "+ oneArr.toString());
    System.out.println("init: twoArr: "+ twoArr.toString());
    System.out.println("====== add bird =======");
    JSONObject two = new JSONObject();
    two.put("two","bird");
    twoArr.add(two);
    System.out.println("change: oneArr: "+ oneArr.toString());
    System.out.println("change: twoArr: "+ twoArr.toString());
    System.out.println();
}

结果:

====== put all success =======

init: oneArr: [{"one":"fish"}]

init: twoArr: [{"one":"fish"}]

====== add bird =======

change: oneArr: [{"one":"fish"}]

change: twoArr: [{"one":"fish"},{"two":"bird"}]

allAll的方式行得通

3,串行化复制;

代码:

public static void main(String[] args) throws IOException, ClassNotFoundException {
    testDeppCopyJsonArr();
}

public static void testDeppCopyJsonArr() throws IOException, ClassNotFoundException {
    System.out.println("====== serializable success =======");
    JSONArray oneArr = new JSONArray();
    JSONObject one = new JSONObject();
    one.put("one","fish");
    oneArr.add(one);
    JSONArray twoArr = CloneUtils.clone(oneArr);;
    System.out.println("init: oneArr: "+ oneArr.toString());
    System.out.println("init: twoArr: "+ twoArr.toString());
    System.out.println("====== add bird =======");
    JSONObject two = new JSONObject();
    two.put("two","bird");
    twoArr.add(two);
    System.out.println("change: oneArr: "+ oneArr.toString());
    System.out.println("change: twoArr: "+ twoArr.toString());
    System.out.println();
}

串行化代码:

public class CloneUtils {

    public static <T extends Serializable> T clone(T src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        //返回生成的新对象
        @SuppressWarnings("unchecked")
        T cloneObj = (T) ois.readObject();
        ois.close();
        return cloneObj;

    }

    public static <T> List<T> deepCopy(List<T> src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        @SuppressWarnings("unchecked")
        List<T> dest = (List<T>) ois.readObject();
        ois.close();
        return dest;
    }
 
    public static <K,V> Map<K,V> cloneMap(Map<K,V> src) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = getInputStream(src);
        @SuppressWarnings("unchecked")
        Map<K, V> result =   (Map<K, V>)     ois.readObject();
        ois.close();
        return result;

    }

    private static ObjectInputStream getInputStream(Object src) throws IOException, ClassNotFoundException {
        //写入字节流
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream obs = new ObjectOutputStream(out);
        obs.writeObject(src);
        obs.close();
        //分配内存,写入原始对象,生成新对象
        ByteArrayInputStream ios = new ByteArrayInputStream(out.toByteArray());
        return new ObjectInputStream(ios);
    }
}

结果:

====== serializable success =======

init: oneArr: [{"one":"fish"}]

init: twoArr: [{"one":"fish"}]

====== add bird =======

change: oneArr: [{"one":"fish"}]

change: twoArr: [{"one":"fish"},{"two":"bird"}]

4,变成字符串后再变成数组

代码:

String columnCopy = JSON.toJSONString(column);

用的时候,再解析出来:

JSONArray.parseArray(columnCopy);

总结:

     在使用fastjon JSONArray深度复制的时候, 不知道怎么做,就转换为字符串,要用的时候,再解析。

  • 2
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

天狼1222

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值