About 4,380 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. JSONArray (Overview (json-lib jdk 1.3 API)) - SourceForge

    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 …

  4. How to create correct JSONArray in Java using JSONObject

    In java 6 org.json.JSONArray contains the put method and in java 7 javax.json contains the add method. An example of this using the builder pattern in java 7 looks something like this:

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

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

  8. JsonArray Class (System.Text.Json.Nodes) | Microsoft Learn

    Represents a mutable JSON array. It is safe to perform multiple concurrent read operations on a JsonArray, but issues can occur if the collection is modified while it's being read. Initializes a new …

  9. gson/gson/src/main/java/com/google/gson/JsonArray.java at main

    A Java serialization/deserialization library to convert Java Objects into JSON and back - google/gson

  10. Java EE 7 JSON-P JsonArray: Complete Guide, Examples, Best Practices

    Mar 13, 2026 · JsonArray is the array representation in Java EE 7’s JSON Processing API (JSON‑P, JSR 353), defined in the javax.json package. Conceptually, it mirrors a JSON array—an ordered list …