JSON 即 JavaScript Object Natation,它是一种轻量级的数据交换格式,非常适合于服务器与 JavaScript 的交互。本文将快速讲解 JSON 格式,并通过代码示例演示如何分别在客户端和服务器端进行 JSON 格式数据的处理。
Json必需的包
commons-httpclient-3.1.jar
commons-lang-2.4.jar
commons-logging-1.1.1.jar
json-lib-2.2.3-jdk13.jar
ezmorph-1.0.6.jar
commons-collections-3.2.1.jar
以上包可以从
http://commons.apache.org/index.html
http://json-lib.sourceforge.net/
http://ezmorph.sourceforge.net/
http://morph.sourceforge.net/
http://www.docjar.com/
中下载到。
出现java.lang.NoClassDefFoundError: net/sf/ezmorph/Morpher错误是因为没有导入ezmorph.jar文件或版本不对。
出现java.lang.NoClassDefFoundError: org/apache/commons/collections/map/ListOrderedMap错误是因为没有导入commons-collections.jar文件或版本不对。
Java代码转换成json代码
1.? ? ? List集合转换成json代码
List list = new ArrayList();
list.add( "first" );
list.add( "second" );
JSONArray jsonArray2 = JSONArray.fromObject( list );
2.? ? ? Map集合转换成json代码
Map map = new HashMap();
map.put("name", "json");
map.put("bool", Boolean.TRUE);
map.put("int", new Integer(1));
map.put("arr", new String[] { "a", "b" });
map.put("func", "function(i){ return this.arr; }");
JSONObject json = JSONObject.fromObject(map);
3.? ? ? Bean转换成json代码
JSONObject jsonObject = JSONObject.fromObject(new JsonBean());
4.? ? ? 数组转换成json代码
boolean[] boolArray = new boolean[] { true, false, true };
JSONArray jsonArray1 = JSONArray.fromObject(boolArray);
5. 一般数据转换成json代码
JSONArray jsonArray3 = JSONArray.fromObject("['json','is','easy']" );
6.? ? ? beans转换成json代码
List list = new ArrayList();
JsonBean2 jb1 = new JsonBean2();
jb1.setCol(1);
jb1.setRow(1);
jb1.setValue("xx");
JsonBean2 jb2 = new JsonBean2();
jb2.setCol(2);
jb2.setRow(2);
jb2.setValue("");
list.add(jb1);
list.add(jb2);
详细解决方案
相关解决方案
- net.sf.json.JSONObject cannot be resolved解决办法
- ajax JSONObject.fromObject 执行的时候没有任何反映,该怎么处理
- [转载]JSONObject.fromObject(地图)(JSON与JAVA数据的转换)
- JSONObject 解析json的步骤
- jsonObject 转化应用
- jsonObject 转化 bean list 地图 array
- 关于json的操作 jsonArray-jsonObject
- new JSONObject()不执行 不报错 解决办法
- Extjs4-json处理日期的有关问题,JSONObject.toBean转换日期时显示当前日期
- 运用json-lib JSONObject JSONArray
- Json委以包 JSONObject
- JSONObject put accumulate element 步骤区别
- JSONObject 与 JSONArray 的运用
- JSONObject 郁闷的有关问题
- JSON格式的String 如何转成 net.sf.json.JSONObject
- java.lang.reflect.InvocationTargetException异常,JSONObject.fromObject(obj)时报错,
- JSONObject.toBean怎么转化带有Timestamp类型的对象
- JSONObject json = new JSONObject()异常
- 有没有人用过org.json.JSONObject?解决思路
- Java中json数据有关问题.老报错 A JSONObject text must begin with '{'
- JSONObject 的有关问题
- JSONObject,该怎么解决
- java jsonobject 的有关问题
- Java 线程中回到的 JsonObject 对象为Null
- JSONObject cannot be converted to JSONArray
- JSONObject 总是返回“空”:false
- 如何将字符串转换为 JSONObject?
- json对象转换为实体对象案例:JSONObject,JSONArray之alibaba.fastjson和net.sf.json的不同用法
- JSON、JSONObject 与 JSONArray 简单讲解
- java.lang.String cannot be cast to com.alibaba.fastjson.JSONObject