About 64,800 results
Open links in new tab
  1. JsonObject (Java (TM) EE 7 Specification APIs) - Oracle

    JsonObject class represents an immutable JSON object value (an unordered collection of zero or more name/value pairs). It also provides unmodifiable map view to the JSON object name/value mappings.

  2. JSONObject (JSON in Java 20210307 API) - javadoc.io

    Mar 7, 2021 · A JSONObject constructor can be used to convert an external form JSON text into an internal form whose values can be retrieved with the get and opt methods, or to convert values into a …

  3. Introduction to JSON-Java | Baeldung

    Jun 20, 2025 · A JSON value can be another JSON object, array, number, string, boolean (true/false), or null. In this tutorial, we’ll see how to create, manipulate, and parse JSON using one of the available …

  4. Working with JSON Data in Java - GeeksforGeeks

    Dec 23, 2025 · Output: Snapshot of JavaJsonEncoding.java File Explanation: JSONObject internally works like a HashMap put () stores key–value pairs The object is automatically converted to JSON …

  5. JSON Example in Java - Online Tutorials Library

    This chapter covers how to encode and decode JSON objects using Java programming language. Let's start with preparing the environment to start our programming with Java for JSON.

  6. Mastering JSONObject in Java - javaspring.net

    Nov 12, 2025 · In Java, the `JSONObject` class is a crucial part of working with JSON data. It provides a convenient way to create, manipulate, and parse JSON objects. This blog post will delve into the …

  7. How to use JSONObject in Java - LabEx

    In this tutorial, we've explored the core techniques for using JSONObject in Java, demonstrating how to efficiently handle JSON data through practical examples and methods.

  8. Getting a Value in JSONObject - Baeldung

    May 5, 2025 · In this tutorial, we’ll dig into the specifics of getting values in JSONObject instances. For the general introduction to JSON support in Java, please check the introduction to JSON-Java.

  9. Java JSONObject Example - ConcretePage.com

    May 20, 2022 · The org.json API handles the JSON operation in Java application. The JSONObject is an unordered collection of name/value pairs.

  10. JSONObject - GitHub Pages

    A JSONObject constructor can be used to convert an external form JSON text into an internal form whose values can be retrieved with the get and opt methods, or to convert values into a JSON text …