📅  最后修改于: 2020-11-12 05:08:45             🧑  作者: Mango
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]