
- org.json - Home
- org.json - Overview
- org.json - Environment Setup
- CSV Examples
- org.json - CDL
- Cookie Examples
- org.json - Cookie
- org.json - CookieList
- HTTP Header Examples
- org.json - HTTP
- JSON Examples
- org.json - JSONArray
- org.json - JSONML
- org.json - JSONObject
- org.json - JSONStringer
- Property Examples
- org.json - Property
- XML Examples
- org.json - XML
- Exception Handling
- org.json - JSONException Handling
- org.json Useful Resources
- org.json - Quick Guide
- org.json - Useful Resources
- org.json - Discussion
org.json - JSONArray
A JSONArray is an ordered sequence of values. It provides methods to access values by index and to put values. Following types are supported −
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); } }
Output
JSONArray: ["foo",100,1000.21,true,null]
Advertisements