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/
中下载到。
出现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 list =
list.add(
list.add( JSONArray jsonArray2 = JSONArray.fromObject( list ); |
2.
Map map =
map.put("name", map.put("bool", Boolean.TRUE);
map.put("int",
map.put("arr",
map.put("func", JSONObject json = JSONObject.fromObject(map); |
3.
JSONObject jsonObject = JSONObject.fromObject(new JsonBean()); |
4.
boolean[]
boolArray = JSONArray jsonArray1 = JSONArray.fromObject(boolArray); |
5.
JSONArray jsonArray3 = JSONArray.fromObject("['json','is','easy']" ); |
6.
List list =
JsonBean2 jb1 = jb1.setCol(1); jb1.setRow(1); jb1.setValue("xx");
JsonBean2 jb2 = jb2.setCol(2); jb2.setRow(2); jb2.setValue(""); list.add(jb1); list.add(jb2); JSONArray ja = JSONArray.fromObject(list); |