fastjson(七)处理超大对象和超大JSON文本

本文介绍了如何使用Fastjson的Stream API处理超大JSON对象和数组,包括序列化和反序列化的具体步骤,通过示例代码展示了如何有效地操作超大JSON数据,以避免内存溢出问题。
摘要由CSDN通过智能技术生成
                       

当需要处理超大JSON文本时,需要Stream API,在fastjson-1.1.32版本中开始提供Stream API。


来看一下示例代码:

示例对象:

package json.fastjson.StreamApi;import java.util.HashMap;import java.util.Map;public class VO {    private int id;    private Map<String, Object> attributes = new HashMap<String, Object>();    public VO(int id) {        super();        this.id = id;    }    public int getId() {        return id;    }    public void setId(int id) {        this.id = id;    }    public Map<String, Object> getAttributes() {        return attributes;    }    @Override    public String toString() {        return "VO [id=" + id + ", attributes=" + attributes + "]";    }}
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
一、序列化
1.1、超大JSON数组序列化

如果你的JSON格式是一个巨大的JSON数组,有很多元素,则先调用startArray,然后挨个写入对象,然后调用endArray。

测试类:

package json.fastjson.StreamApi;import java.io.FileWriter;import java.io.IOException;import com.alibaba.fastjson.JSONWriter;public class TestHugeArraySerialize {    public static void main(String[] args) throws IOException {        JSONWriter writer = new JSONWriter(new FileWriter("hugeArray.json"));        writer.startArray();        for (int i = 0; i < 10; ++i) {            writer.writeValue(new VO(i));        }        writer.endArray();        writer.close();    }}
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

输出结果:

程序运行之后会产生一个文件:

这里写图片描述

文件内容:

[{"attributes":{},"id":0},{"attributes":{},"id":1},{"attributes":{},"id":2},{"attributes":{},"id":3},{"attributes":{},"id":4},{"attributes":{},"id":5},{"attributes":{},"id":6},{"attributes":{},"id":7},{"attributes":{},"id":8},{"attributes":{},"id":9}]
  
  
  • 1
1.2、超大JSON对象序列化

如果你的JSON格式是一个巨大的JSONObject,有很多Key/Value对,则先调用startObject,然后挨个写入Key和Value,然后调用endObject。

测试类:

package json.fastjson.StreamApi;import java.io.FileWriter;import java.io.IOException;import com.alibaba.fastjson.JSONWriter;public class TestHugeObjectSerialize {    public static void main(String[] args) throws IOException {        JSONWriter writer = new JSONWriter(new FileWriter("hugeObject.json"));        writer.startObject();        for (int i = 0; i < 10; ++i) {            writer.writeKey("x" + i);            writer.writeValue(new VO(i));        }        writer.endObject();        writer.close();    }}
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

输出结果:

程序运行之后会产生一个文件:

这里写图片描述

文件内容:

{"x0":{"attributes":{},"id":0},"x1":{"attributes":{},"id":1},"x2":{"attributes":{},"id":2},"x3":{"attributes":{},"id":3},"x4":{"attributes":{},"id":4},"x5":{"attributes":{},"id":5},"x6":{"attributes":{},"id":6},"x7":{"attributes":{},"id":7},"x8":{"attributes":{},"id":8},"x9":{"attributes":{},"id":9}}
  
  
  • 1
二、反序列化
2.1、超大JSON数组反序列化

测试类:

package json.fastjson.StreamApi;import java.io.FileReader;import java.io.IOException;import com.alibaba.fastjson.JSONReader;public class TestHugeArrayDeserialize {    public static void main(String[] args) throws IOException {        // 读入上面输出的文件        JSONReader reader = new JSONReader(new FileReader("hugeArray.json"));        reader.startArray();        while (reader.hasNext()) {            VO vo = reader.readObject(VO.class);            System.out.println(vo);        }        reader.endArray();        reader.close();    }}
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

输出结果:

VO [id=0, attributes={}]VO [id=1, attributes={}]VO [id=2, attributes={}]VO [id=3, attributes={}]VO [id=4, attributes={}]VO [id=5, attributes={}]VO [id=6, attributes={}]VO [id=7, attributes={}]VO [id=8, attributes={}]VO [id=9, attributes={}]
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
2.2、超大JSON对象反序列化

测试类:

package json.fastjson.StreamApi;import java.io.FileReader;import java.io.IOException;import com.alibaba.fastjson.JSONReader;public class TestHugeObjectDeserialize {    public static void main(String[] args) throws IOException {        // 读入上面输出的文件        JSONReader reader = new JSONReader(new FileReader("hugeObject.json"));        reader.startObject();        while (reader.hasNext()) {            String key = reader.readString();            VO vo = reader.readObject(VO.class);            System.out.println(key + ":" + vo);        }        reader.endObject();        reader.close();    }}
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

输出结果:

x0VO [id=0, attributes={}]x1VO [id=1, attributes={}]x2VO [id=2, attributes={}]x3VO [id=3, attributes={}]x4VO [id=4, attributes={}]x5VO [id=5, attributes={}]x6VO [id=6, attributes={}]x7VO [id=7, attributes={}]x8VO [id=8, attributes={}]x9VO [id=9, attributes={}]
  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值