org.json - JSONArray
Un JSONArray est une séquence ordonnée de valeurs. Il fournit des méthodes pour accéder aux valeurs par index et pour mettre des valeurs. Les types suivants sont pris en charge -
Boolean
JSONArray
JSONObject
Number
String
Objet JSONObject.NULL
Exemple
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);
}
}
Production
JSONArray:
["foo",100,1000.21,true,null]