Org Json 简明教程
org.json - JSONArray
JSONArray 是一个有序的值序列。它提供按索引访问值和放置值的方法。支持以下类型 −
-
Boolean
-
JSONArray
-
JSONObject
-
Number
-
String
-
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);
}
}