Org Json 简明教程

org.json - JSONArray

JSONArray 是一个有序的值序列。它提供按索引访问值和放置值的方法。支持以下类型 −

  1. Boolean

  2. JSONArray

  3. JSONObject

  4. Number

  5. String

  6. JSONObject.NULL object

Example

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);
   }
}

Output

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