org.json 使用

org.json 和 json-lib 使用上差不多。

//JSONObject
public static void main(String[] args) {
String jsonObjectStr = "{'name':'张三','age':30}";
JSONObject jsonObject = new JSONObject(jsonObjectStr);
System.out.println("name:"+jsonObject.get("name")+",age:"+jsonObject.get("age"));
} //JSONArray
public static void main(String[] args) {
String jsonArrayStr = "[{'name':'张三'},{'name':'李四'}]";
JSONArray jsonArray = new JSONArray(jsonArrayStr);
for(int i= 0;i<jsonArray.length();i++){
JSONObject jsonObject = jsonArray.getJSONObject(i);
System.out.println(jsonObject.get("name"));
}
}

  

上一篇:DML语言练习,数据增删改查,复制清空表


下一篇:Nginx 内置变量,细化规则,真实IP获取及限制连接请求