JSON数据与JAVA数据之间的转换_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > JSON数据与JAVA数据之间的转换

JSON数据与JAVA数据之间的转换

 2015/2/11 18:40:22  _wy_  程序员俱乐部  我要评论(0)
  • 摘要:原文地址:JSONObject.fromObject(map)(JSON与JAVA数据的转换)作者:田保兴1.List集合转换成json数据Listlist=newArrayList();list.add("first");list.add("second");JSONArrayjsonArray2=JSONArray.fromObject(list);2.Map集合转换成json代码Mapmap=newHashMap();map.put("name","json");map.put
  • 标签:Java 数据 JSON JS
原文地址:JSONObject.fromObject(map)(JSON与JAVA数据的转换)作者:田保兴

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[i]; }");

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);

发表评论
用户名: 匿名