java处理json数据

一.json中的数组和对象
    1.数组(JsonArray)
        数组用一对[],表示存放的是一般的数组数据。
        如:["11","22","33"],表示这是一个JSONArray数组,里面有3个数据:”11“,”22“,”33“。当然可以是复杂的数据,就是所谓的嵌套定义吧。
    2.对象(JsonObject)
        对象用一对{},来表示其中JSON通用的”键-值“对。
        如:{"sex1":"female","name0":"zhangsan"},表示的是一个JSON对象,里面有两组数据(键值对),sex1=female,name0=zhangsan。当然这里键对应的数据值,可以是复杂的JSON对象或者数组。
二.基本的JSONArray和JSONObject操作
  

 import net.sf.json.JSONArray;
    import net.sf.json.JSONObject;
    public class ObjectAndArray1 {
        public static void main(String args[])
        {
            JSONObject jsonObj  = new JSONObject();
            jsonObj.put("name0", "zhangsan");
            jsonObj.put("sex1", "female");
            System.out.println(jsonObj);    //输出为:{"sex1":"female","name0":"zhangsan"}
            
            JSONArray jsonArray = new JSONArray();
            jsonArray.add("11");
            jsonArray.add("22");
            jsonArray.add("33");
            System.out.println(jsonArray);    //输出为:["11","22","33"]
        }
    }


三.由java自带的数据结构转换为JSON文本
  

 import java.util.HashMap;
    import java.util.Map;
    import net.sf.json.JSONArray;
    import net.sf.json.JSONObject;

    public class ObjectAndArray2{
        public static void main(String args[])
        {
            //可以由数组,列表等生成JSONArray
            String list[]={"11","22"};
            JSONArray jsonarray = JSONArray.fromObject(list); 
            jsonarray.add("33");
            System.out.println(jsonarray);    //输出为:["11","22","33"]
            
            //可以由Map生成JSONObject
            Map map=new HashMap();
            map.put("NO1", "第一个");
            map.put("NO2", "第二个");
            map.put("NO3", jsonarray);
            JSONObject jsonObj  = JSONObject.fromObject(map);
            System.out.println(jsonObj);    //输出为:{"NO3":["11","22","33"],"NO2":"第二个","NO1":"第一个"}
        }
    }


四.读取JSON文件
    JSONArray必须用下标读取内部数据。
    JSONObject必须用"键"读取对应的"值"。
    

import net.sf.json.JSONArray;
    import net.sf.json.JSONObject;
    public class ObjectAndArray {
        public static void main(String args[])
        {
            JSONArray jsonarray;
            JSONObject jsonObj;
            //读取JSONArray,用下标索引获取
            String array="[\"11\",\"22\",\"33\"]";
            jsonarray = JSONArray.fromObject(array); 
            System.out.println(jsonarray.getString(1));    //输出为:22
            
            //读取JSONObject
            String object="{\"NO1\":[\"44\",\"55\",\"66\"],\"NO2\":{\"NO1\":\"第一个\"}}";
            jsonObj  = JSONObject.fromObject(object);
            System.out.println(jsonObj.get("NO1"));    //输出为:["44","55","66"]
            
            jsonarray = (JSONArray)(jsonObj.get("NO1")); 
            System.out.println(jsonarray.getString(1));    //输出为:55
            
            //用"键"获取值
            jsonObj=(JSONObject)jsonObj.get("NO2");
            System.out.println(jsonObj);    //输出为:{"NO1":"第一个"}
            
        }
    }


    注:get("")方法用于获取JSONObject的数据    getString(Integer) 用于JSONArray的数据
五.JSONArray和JSONObject的常用方法

你可能感兴趣的:(java,json)