About 61,500 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 …

  2. JSON Arrays - W3Schools

    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 any other valid JavaScript expression, including …

  3. 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 …

  4. 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.

  5. Introduction to JSON-Java | Baeldung

    Jun 20, 2025 · A JSONArray is an ordered collection of values, resembling Java’s native Vector implementation: Values can be anything from a Number, String, Boolean, JSONArray, or …

  6. Mastering Java JSONArray: A Comprehensive Guide

    Jul 21, 2025 · A `JSONArray` in Java is a crucial component when dealing with JSON data that comes in the form of an array. It provides a convenient way to manipulate and access …

  7. Converting a Java List to a Json Array - Baeldung

    Jun 18, 2025 · One common task is converting a Java List to a JSON array. In this tutorial, we’ll explore different approaches to achieve this conversion, providing us with practical examples …

  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 …

  9. Updating Values in JSONArray - Baeldung

    Aug 18, 2024 · In this tutorial, we’ll explore various methods to update values within JSON arrays using different Java libraries, specifically focusing on org.json (which includes the JSONArray …

  10. 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 …