- 首页
- 作品
- Fastjson 使用指南
- Fastjson Stream 处理大文件
Fastjson Stream 处理大文件
Fastjson当需要处理超大JSON文本时,需要Stream API,在fastjson-1.1.32版本中开始提供Stream API。
序列化
超大JSON数组序列化
超大JSON对象序列化
反序列化
- 例1
JSONReader reader = new JSONReader(new FileReader("/tmp/huge.json"));
reader.startArray();
while(reader.hasNext()) {
VO vo = reader.readObject(VO.class);
// handle vo ...
}
reader.endArray();
reader.close();
- 例2
JSONReader reader = new JSONReader(new FileReader("/tmp/huge.json"));
reader.startObject();
while(reader.hasNext()) {
String key = reader.readString();
VO vo = reader.readObject(VO.class);
// handle vo ...
}
reader.endObject();
reader.close();
下一节:ParseProcess是编程扩展定制反序列化的接口。fastjson支持如下ParseProcess:ExtraProcessor 用于处理多余的字段,ExtraTypeProvider 用于处理多余字段时提供类型信息。