About 4,520 results
Open links in new tab
  1. JsonArray (Java (TM) EE 7 Specification APIs) - Oracle

    JsonArray represents an immutable JSON array (an ordered sequence of zero or more values). It also provides an unmodifiable list view of the values in the array. A JsonArray object can be created by …

  2. JSONArray (JSON in Java 20230227 API) - javadoc.io

    Feb 27, 2023 · A JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with commas separating the values. The internal form is an object having get and …

  3. JSON Arrays - W3Schools

    Arrays in JSON are almost the same as arrays in JavaScript. In JSON, array values must be of type string, number, object, array, boolean or null. In JavaScript, array values can be all of the above, plus …

  4. Accessing members of items in a JSONArray with Java

    I have access to the "record" JSONArray at this point, but am unsure as to how I'd get the "id" and "loc" values within a for loop. Sorry if this description isn't too clear, I'm a bit new to programming.

  5. JSONArray | API reference | Android Developers

    JSONArray Added in API level 1 public JSONArray (String json) Creates a new JSONArray with values from the JSON string.

  6. JSONArray - GitHub Pages

    A JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with commas separating the values. The internal form is an object having get and opt …

  7. How to create correct JSONArray in Java using JSONObject

    18 I suppose you're getting this JSON from a server or a file, and you want to create a JSONArray object out of it.

  8. JsonArray (JSON Documentation) - Oracle

    JsonArray represents an immutable JSON array (an ordered sequence of zero or more values). It also provides an unmodifiable list view of the values in the array. A JsonArray object can be created by …

  9. What is JSON Array? - GeeksforGeeks

    Jul 23, 2025 · JSON array of Strings contains string elements only. For example, the array below has 6 string elements, "Ram", "Shyam", "Radhika", "Akshay", "Prashant" and "Varun", each element is …

  10. Working with JSON Java Arrays: A Comprehensive Guide

    Nov 12, 2025 · In Java, dealing with JSON arrays is a common task, especially when working with web services, APIs, or data serialization and deserialization. A JSON array is an ordered list of values, …