Fastjson JSONObject深度复制

Fastjson JSONObject深度复制

目录

Fastjson JSONObject深度复制

1,new JSONObject (Object) - 失败

2,Put All;

3,串行化复制;

总结:


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

 

1,new JSONObject (Object) - 失败

 

代码:

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

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

 

结果:

====== new JSONObject fail =======

init: one: {"one":"fish"}

init: two: {"one":"fish"}

====== add grass =======

change: one: {"one":"fish","two":"grass"}

change: two: {"one":"fish","two":"grass"}

====== new JSONObject fail =======

new JSONObject(one) 这种方式失败了 new JSONObject(Object)深复制失败的原因​​​​​​​

2,Put All;

代码:

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

public static void testPutAllJson(){
    System.out.println("====== put all =======");
    JSONObject one = new JSONObject();
    one.put("one","fish");
    JSONObject two = new JSONObject();
    two.putAll(one);
    System.out.println("init: one: "+ one.toString());
    System.out.println("init: two: "+ two.toString());
    System.out.println("====== add fox =======");
    two.put("two","fox");
    System.out.println("change: one: "+ one.toString());
    System.out.println("change: two: "+ two.toString());
    System.out.println();
}

结果:

====== put all =======

init: one: {"one":"fish"}

init: two: {"one":"fish"}

====== add fox =======

change: one: {"one":"fish"}

change: two: {"one":"fish","two":"fox"}

 putAll的方式行得通

 

3,串行化复制;

 

代码:

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

public static void testDeppCopyJson() throws IOException, ClassNotFoundException {
    System.out.println("====== serializable success =======");
    JSONObject one = new JSONObject();
    one.put("one","fish");
    JSONObject two =  CloneUtils.clone(one);
    two.putAll(one);
    System.out.println("init: one: "+ one.toString());
    System.out.println("init: two: "+ two.toString());
    System.out.println("====== add wolf =======");
    two.put("two","wolf");
    System.out.println("change: one: "+ one.toString());
    System.out.println("change: two: "+ two.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: one: {"one":"fish"}

init: two: {"one":"fish"}

====== add wolf =======

change: one: {"one":"fish"}

change: two: {"one":"fish","two":"wolf"}

 

总结:

   在使用fastjon JSONObject复制的时候,一般用第二种putAll的方式,如果大量使用,也可以考虑用第三种方式。

 

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

天狼1222

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

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

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

打赏作者

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

抵扣说明:

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

余额充值