Json-lib使用

 

  • Json-lib

Json-lib 是一个 Java 类库(官网:http://json-lib.sourceforge.net/)可以实现如下功能:

  • 转换 javabeans, maps, collections, java arrays 和 XML 成为 json 格式数据
  • 转换 json 格式数据成为 javabeans 对象

Json-lib 需要的 jar 包

  • commons-beanutils-1.8.3.jar
  • commons-collections-3.2.1.jar
  • commons-lang-2.6.jar
  • commons-logging-1.1.1.jar
  • ezmorph-1.0.6.jar
  • json-lib-2.4-jdk15.jar
  • Json-lib 的使用

1. 将 Array 解析成 Json 串。

@Test
public void arrToJson() {
/**
* 将Array转化成Json串
*/
String[] str = {"Json", "Json-lib", "Jackson", "Xml"};
JSONArray json = JSONArray.fromObject(str);
System.out.println(json);

/**
* 对象数组转为Json
*/
Person[] ps = { new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"})),
new Person(2, "哈哈", false, new Date(), Arrays.asList(new String[] {"打球"}))
};
json = JSONArray.fromObject(ps);
System.out.println(json);

/**
* 将List集合转为Json
*/
List<Person> plist = new ArrayList<Person>();
plist.add(new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"})));
plist.add(new Person(2, "哈哈", false, new Date(), Arrays.asList(new String[] {"打球"})));
json = JSONArray.fromObject(ps);
System.out.println(json);

}

运行结果如下:

["Json","Json-lib","Jackson","Xml"]
[{"birthday":{"date":14,"day":5,"hours":19,"minutes":29,"month":3,"seconds":56,"time":1492169396320,"timezoneOffset":-480,"year":117},"gender":false,"hobby":["打球","游戏","动漫"],"id":1,"name":"略略"},{"birthday":{"date":14,"day":5,"hours":19,"minutes":29,"month":3,"seconds":56,"time":1492169396320,"timezoneOffset":-480,"year":117},"gender":false,"hobby":["打球"],"id":2,"name":"哈哈"}]
[{"birthday":{"date":14,"day":5,"hours":19,"minutes":29,"month":3,"seconds":56,"time":1492169396320,"timezoneOffset":-480,"year":117},"gender":false,"hobby":["打球","游戏","动漫"],"id":1,"name":"略略"},{"birthday":{"date":14,"day":5,"hours":19,"minutes":29,"month":3,"seconds":56,"time":1492169396320,"timezoneOffset":-480,"year":117},"gender":false,"hobby":["打球"],"id":2,"name":"哈哈"}]

2. 将 JavaBean/Map 解析成 JSON 串。 使用JSONObject 解析:

@Test
public void beanToJson() {

/**
* 对象转化为Json
*/
Person p = new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"}));
JSONObject json = JSONObject.fromObject(p);
System.out.println(json);

/**
* 解析map
*/
Map<String, Object> map = new HashMap<String, Object>();
map.put("name", "董事三");
map.put("age", 24);
json = JSONObject.fromObject(map);
System.out.println(json);

}

运行结果如下:

{"birthday":{"date":14,"day":5,"hours":19,"minutes":38,"month":3,"seconds":22,"time":1492169902753,"timezoneOffset":-480,"year":117},"gender":false,"hobby":["打球","游戏","动漫"],"id":1,"name":"略略"}
{"age":24,"name":"董事三"}

3. 使用 JsonConfig 过虑属性:适用于 JavaBean/Map

@Test
public void jsonConfig() {
/**
* 使用jsonConfig过滤属性
*/
Person p = new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"}));
JsonConfig config = new JsonConfig();
config.setExcludes(new String[] {"birthday"});
JSONObject json = JSONObject.fromObject(p, config);
System.out.println(json);
}

运行结果如下,在运行结果中我们可以看到 name 属性被过滤掉了:

{"gender":false,"hobby":["打球","游戏","动漫"],"id":1,"name":"略略"}

4. 将 Json 串转换成 Array:

@Test
public void jsonToArr() {

/**
* json转换成一般数组
*/
String[] str = {"Json", "Json-lib", "Jackson", "Xml"};
JSONArray json = JSONArray.fromObject(str);

Object strs = JSONArray.toArray(json);
System.out.println(strs);
System.out.println(Arrays.asList((Object[])strs));

List<Person> plist = new ArrayList<Person>();
plist.add(new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"})));
plist.add(new Person(2, "哈哈", false, new Date(), Arrays.asList(new String[] {"打球"})));
json = JSONArray.fromObject(plist);

List<Person> ps = (List<Person>) JSONArray.toCollection(json, Person.class);
for (Person person : ps) {
System.out.println(person);
}
}

运行结果如下:

[Ljava.lang.Object;@39e87719
[Json, Json-lib, Jackson, Xml]
Person [id=1, name=略略, gender=false, birthday=Fri Apr 14 20:18:29 CST 2017, hobby=[打球, 游戏, 动漫]]
Person [id=2, name=哈哈, gender=false, birthday=Fri Apr 14 20:18:29 CST 2017, hobby=[打球]]

5. 将 Json 串转成 JavaBean:

@Test
public void jsonToBean() {
/**
* json转化为javabean
*/
Person p = new Person(1, "略略", false, new Date(), Arrays.asList(new String[] {"打球", "游戏", "动漫"}));
JSONObject json = JSONObject.fromObject(p);

Object o = JSONObject.toBean(json, Person.class);
System.out.println(o);

}

运行结果如下:

2017-4-14 20:19:51 net.sf.json.JSONObject toBean
信息: Property ‘day‘ of class java.util.Date has no write method. SKIPPED.
2017-4-14 20:19:51 net.sf.json.JSONObject toBean
信息: Property ‘timezoneOffset‘ of class java.util.Date has no write method. SKIPPED.
Person [id=1, name=略略, gender=false, birthday=Fri Apr 14 20:19:51 CST 2017, hobby=[打球, 游戏, 动漫]]

在将 Json 形式的字符串转换为 JavaBean 的时候需要注意 JavaBean 中必须有无参构造函数,否则会报如下找不到初始化方法的错误:

Exception in thread "main" net.sf.json.JSONException: java.lang.NoSuchMethodException: cn.sunzn.json.Person.<init>()
   at net.sf.json.JSONObject.toBean(JSONObject.java:288)
   at net.sf.json.JSONObject.toBean(JSONObject.java:233)
   at cn.sunzn.json.JsonLib.main(JsonLib.java:23)
Caused by: java.lang.NoSuchMethodException: cn.sunzn.json.Person.<init>()
   at java.lang.Class.getConstructor0(Unknown Source)
   at java.lang.Class.getDeclaredConstructor(Unknown Source)
   at net.sf.json.util.NewBeanInstanceStrategy$DefaultNewBeanInstanceStrategy.newInstance(NewBeanInstanceStrategy.java:55)
   at net.sf.json.JSONObject.toBean(JSONObject.java:282)
   ... 2 more

时间: 2024-10-01 00:31:52

Json-lib使用的相关文章

JSON lib 里JsonConfig详解

一,setCycleDetectionStrategy 防止自包含 /** * 这里测试如果含有自包含的时候需要CycleDetectionStrategy */ public static void testCycleObject() { CycleObject object = new CycleObject(); object.setMemberId("yajuntest"); object.setSex("male"); JsonConfig jsonCon

json lib 2.4及其依赖包下载

下载文件地址:https://files.cnblogs.com/files/xiandedanteng/json-lib-2.4%26dependencies_jars.rar 它包括 commons-beanutils-1.9.3.jar commons-collections-3.2.jar commons-lang-2.3.jar commons-logging-1.2.jar ezmorph-1.0.6.jar json-lib-2.4-jdk15.jar 这些库可以满足转化Java对

还在用Json完成Ajax,改用Beetl吧(上)

浏览器通过AJAX,服务器返回json数据,无刷新的更新视图的这种模式在WEB开发中我已经用了很长时间了,记得最早是08年的时候用的,当时传递JSON数据让我眼前一亮.这种方式是只需要采用工具包将模型序列化成json格式就行,js UI库总能识别这种格式,轻易的生成新的视图片段. 然而时过境迁.这种传递AJAX JSON方式渐渐有了新的问题. JSON序列化库无法完美的序列化模型对象.序列化库总期望输入一个Object,但实际上前端有可能需要多个Object,这样,你不得不再创建一个序列化专用的

json库的编译方法和vs2010中导入第三方库的方法

一.去相应官网下载json.cpp文件 Jsoncpp下载:https://sourceforge.net/projects/jsoncpp/    版本为v0.5.0 最新版本在:https://github.com/open-source-parsers/jsoncpp 二.编译链接成库文件 1)解压下载的json包,得到jsoncpp-src-0.5.0文件,打开jsoncpp-src-0.5.0\makefiles\vs71\jsoncpp.sln 2)转换项目为vs2010格式,并将模

Struts2 ajax json小例子

1:首先要解决jar包的问题,我最近一直用maven搭建项目,所以把pom.xml复制到这. 要有struts2的核心包,struts2和Json整合的包,以及json lib.刚才转载了一篇解决json lib老是报错的博客,问题完美解决. <dependencies> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-json-plugin</ar

c++ json cpp

一 编译链接 1 在相应官网下载jsoncpp 2 解压得到jsoncpp-src-0.5.0文件 3 打开jsoncpp-src-0.5.0 -> makefiles -> vs71 -> jsoncpp.sln 4 转换项目为VS2010格式 5 选择debug模式 6 在“解决方案资源管理器”中右击 lib_json 选择->仅用于项目 -> 仅生成lib_json 7 再次右击 lib_json 选择->仅用于项目 -> 仅链接lib_json 8 选择r

关于浮点数的json解析

最近在工作中遇到个问题 通过post请求从其它系统(好像是C#写的)获得json字符串 {"geometry":{"rings":[[[40426489.331430912,3001752.0858958033],[40426225.692211367,3001750.0779145896],[40426202.957955509,3001594.0301330695],[40426290.959128119,3001559.0584689],[40426390.7

json+hibernate死循环问题的一点见解

[问题]如题所示,在我们使用hibernate框架而又需要将对象转化为json的时候,如果配置了双向的关联关系,就会出现这个死循环问题 异常信息: [原因]为什么会这样呢?原因在于你要转化的对象里配置了对另外一个对象的关联,而那个对象里又配置了对你这个对象的关联.比如我的两个类叫做Shop(商店)和Staff(员工),一个商店可以有多个员工,所以我给这两个对象配置了双向的一对多和多对一的关联关系.这时候问题就出现了,JSON lib在把shop对象转化为json字符串的时候,发现shop里有个S

spingmvc 返回json数据日期格式化方法

第一种: json 用的是这个依赖 <!-- JSON lib 开发包 以及它的依赖包 --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.6.0</version> </dependency> 在springmvc返回j

C++ 使用Json时,VS2010添加jsoncpp

一 编译链接 1 在相应官网下载jsoncpp 2 解压得到jsoncpp-src-0.5.0文件 3 打开jsoncpp-src-0.5.0 -> makefiles -> vs71 -> jsoncpp.sln 4 转换项目为VS2010格式 5 选择debug模式 6 在“解决方案资源管理器”中右击 lib_json 选择->仅用于项目 -> 仅生成lib_json 7 再次右击 lib_json 选择->仅用于项目 -> 仅链接lib_json 8 选择r