org.json - JSONArray



JSONArray 是一个有序序列值。它提供根据索引获取值和插入值的方法。支持下列类型 −

  • 布尔

  • JSONArray

  • JSONObject

  • 数字

  • 字符串

  • JSONObject.NULL 对象

示例

import org.json.JSONArray;
import org.json.JSONObject;

public class JSONDemo {
   public static void main(String[] args) { 
      JSONArray list = new JSONArray();

      list.put("foo");
      list.put(new Integer(100));
      list.put(new Double(1000.21));
      list.put(new Boolean(true));
      list.put(JSONObject.NULL);

      System.out.println("JSONArray: ");
      System.out.println(list);
   }
}

输出

JSONArray: 
["foo",100,1000.21,true,null]
广告