关于Json的使用

1.导入包

1.json-lib-2.4-jdk15
2.commons-beanutils-1.9.3
3.commons-collections-3.2.2
4.commons-lang-2.6
5.commons-logging-1.2
6.ezmorph-1.0.6

2.将普通String转换为Json

JSONObject object = new JSONObject();
//可以在此处put多条数据
object.put(key,value);

3.通过object类型的数据获取Json对象。

String jsonMsg = {"string":"value","number":123,"object":null,"bool":true};
JSONObject getObject = JSONObject.fromObject(jsonMsg);

4.从Json对象中解析出数据

String json_str = getObject.getString("string"); 
int json_int = getObject.getInt("number");
Object json_object  = getObject.get("object");
boolean json_bool = getObject.getBoolean("boolean");

你可能感兴趣的:(util)