org.json - JSONArray


JSONArray 是值的有序序列。它提供了通过索引访问值和放置值的方法。支持以下类型 -

  • 布尔值

  • JSON数组

  • JSON对象

  • 数字

  • 细绳

  • 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]