JSON-IO开源项目

我要开发同款
匿名用户2013年03月28日
42阅读
开发技术Java
所属分类Web应用开发、JSON/BSON开发包
授权协议Apache

作品详情

JAVA平台下的一款,序列化反序列化工具,重点在于

1.可以直接把JSON反序列化为对象.

2.可反序列化深层复杂的对象.

3.可序列化循环引用等复杂对象.

4.可序列化静态类和内部类.

 

json-io canbeuseddirectlyonJSONStringsorwithJava'sStreams.

Example1:StringtoJavaobject

  Objectobj=JsonReader.jsonToJava("[\"Hello,World\"]");ThiswillconverttheJSONStringtoaJavaObjectgraph.Inthiscase,itwouldconsistofan Object[] ofone String element.

Example2:JavaobjecttoJSONString

  Employeeemp;  //Empfetchedfromdatabase  Stringjson=JsonWriter.objectToJson(emp);Thisexamplewillconvertthe Employee instancetoaJSONString.Ifthe JsonReader wereusedonthis String,itwouldreconstituteaJavaEmployee instance.

Example3: InputStream toJavaobject

  JsonReaderjr=newJsonReader(inputStream);  Employeeemp=(Employee)jr.readObject();Inthisexample,an InputStream (couldbefromaFile,theNetwork,etc.)issupplyinganunknownamountofJSON.The JsonReader isusedtowrapthestreamtoparseit,andreturntheJavaobjectgraphitrepresents.

Example4:JavaObjectto OutputStream

  Employeeemp;  //empobtainedfromdatabase  JsonWriterjw=newJsonWriter(outputStream);  jw.write(emp);  jw.close();

 

 

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论