🌐
GitHub
github.com › stleary › JSON-java
GitHub - stleary/JSON-java: A reference implementation of a JSON package in Java. · GitHub
The JSON-Java package is a reference implementation that demonstrates how to parse JSON documents into Java objects and how to generate new JSON documents from the Java classes.
Starred by 4.7K users
Forked by 2.6K users
Languages   Java
🌐
GitHub
github.com › RameshMF › jackson-json-tutorial
GitHub - RameshMF/jackson-json-tutorial: Tutorial and examples of Jackson APIs
Tutorial and examples of Jackson APIs · Jackson - Convert Java Object to/from JSON Example (popular) Jackson - List, Set, and Map Serialization and Deserialization in Java Examples · Change Field Name in JSON using Jackson (popular) How to Read / Write JSON Using Jackson JsonParser and JsonGenerator ·
Starred by 13 users
Forked by 8 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › ralfstx › minimal-json
GitHub - ralfstx/minimal-json: A fast and small JSON parser and writer for Java
A JsonValue can contain a JSON array, object, string, number, or one of the literals true, false, and null. To transform a JsonValue into a Java type, use the methods asString, asInt, asFloat, asArray etc., depending on the expected type.
Starred by 739 users
Forked by 187 users
Languages   Java 93.9% | JavaScript 4.4% | Java 93.9% | JavaScript 4.4%
🌐
GitHub
github.com › a2800276 › json.java
GitHub - a2800276/json.java: simple json parser for java
simple json parser for java. Contribute to a2800276/json.java development by creating an account on GitHub.
Author   a2800276
🌐
GitHub
github.com › antonsjava › json
GitHub - antonsjava/json: json - small library for manipulating json data structures
json object representation with set of named attrinutes. (JsonFactory.object())
Author   antonsjava
🌐
GitHub
github.com › fangyidong › json-simple
GitHub - fangyidong/json-simple: A simple Java toolkit for JSON. You can use json-simple to encode or decode JSON text. · GitHub
A simple Java toolkit for JSON. You can use json-simple to encode or decode JSON text. - fangyidong/json-simple
Starred by 758 users
Forked by 343 users
Languages   Java
🌐
GitHub
github.com › bowbahdoe › json
GitHub - bowbahdoe/json: A Java JSON Library intended to be easy to learn and simple to teach
import dev.mccue.json.*; import java.util.List; import java.util.Map; public class Main { public static void main(String[] args) { JsonObject kermit = JsonObject.of(Map.of( "name", JsonString.of("kermit"), "age", JsonNumber.of(22), "commitmentIssues", JsonBoolean.of(true), "wife", JsonNull.instance(), "children", JsonArray.of(List.of( JsonString.of("Tiny Tim") )) )); System.out.println(kermit); } }
Starred by 43 users
Forked by 5 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › acanimal › java-json-examples
GitHub - acanimal/java-json-examples: Examples reading JSON files with Java
Examples reading JSON files with Java. Contribute to acanimal/java-json-examples development by creating an account on GitHub.
Starred by 3 users
Forked by 5 users
Languages   Java 100.0% | Java 100.0%
🌐
Stleary
stleary.github.io › JSON-java › index.html
Generated Documentation (Untitled)
JavaScript is disabled on your browser · Frame Alert · This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version
Find elsewhere
🌐
GitHub
github.com › RameshMF › java-json-processing-tutorial › wiki › JSON.simple-Tutorial---Read-and-Write-JSON-in-Java
JSON.simple Tutorial Read and Write JSON in Java
July 16, 2019 - In this example, we create an array with 3 user objects using JSONObject and JSONArray classes: package net.javaguides.jsonsimple; import java.io.FileWriter; import java.io.IOException; import org.json.simple.JSONArray; import org.json.simple.JSONObject; public class WriteJSON { @SuppressWarnings("unchecked") public static void main(String[] args) { //First User JSONObject userDetails = new JSONObject(); userDetails.put("id", 100); userDetails.put("firstName", "Ramesh"); userDetails.put("lastName", "Fadatare"); userDetails.put("userName", "Ramesh Fadatare"); userDetails.put("email", "ramesh@gm
Author   RameshMF
🌐
JAXB
javaee.github.io › tutorial › jsonp001.html
Introduction to JSON
The following example shows JSON data for a sample object that contains name-value pairs. The value for the name "phoneNumbers" is an array whose elements are two objects. { "firstName": "Duke", "lastName": "Java", "age": 18, "streetAddress": "100 Internet Dr", "city": "JavaTown", "state": "JA", "postalCode": "12345", "phoneNumbers": [ { "Mobile": "111-111-1111" }, { "Home": "222-222-2222" } ] }
🌐
Stleary
stleary.github.io › JSON-java
Package org.json
JavaScript is disabled on your browser · Frame Alert · This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to Non-frame version
🌐
JAXB
javaee.github.io › tutorial › jsonp002.html
JSON Processing in the Java EE Platform
The javax.json package contains a reader interface, a writer interface, a model builder interface for the object model, and utility classes and Java types for JSON elements. This package also includes several classes that implement other JSON-related standards: JSON Pointer, JSON Patch, and ...
🌐
GitHub
github.com › chargebee › JSON-java
GitHub - chargebee/JSON-java
JSONArray.java: The JSONObject can parse text from a String or a JSONTokener to produce a vector-like object. The object provides methods for manipulating its contents, and for producing a JSON compliant array serialization.
Starred by 2 users
Forked by 2 users
Languages   Java 100.0% | Java 100.0%
🌐
Mkyong
mkyong.com › home › tutorials › java json tutorials
Java JSON Tutorials - Mkyong.com
May 17, 2024 - MDN Working with JSON · Jackson vs Gson · Jackson data-binding github · Gson github · FastJson home page · Founder of Mkyong.com, passionate Java and open-source technologies. If you enjoy my tutorials, consider making a donation to these charities. 0 Comments ·
🌐
GitHub
github.com › ajermakovics › json
GitHub - ajermakovics/json: Simple and convenient Json in Java
Json json = Json.of.url("https://status.github.com/api/status.json"); // download from url Json json = Json.of.bytes(byteArray); Json json = Json.of.file("/path/to/file.json"); Json json = Json.of.bean(beanObject); Json json = Json.of.string("{port: ...
Starred by 20 users
Forked by 3 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › json-iterator › java
GitHub - json-iterator/java: jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go
Documentation : http://jsoniter.com/java-features.html
Starred by 1.6K users
Forked by 530 users
Languages   Java 100.0% | Java 100.0%
🌐
GitHub
github.com › FasterXML › jackson-docs
GitHub - FasterXML/jackson-docs: Documentation for the Jackson JSON processor. · GitHub
This project is the main hub to all kinds of documentation related to the Jackson JSON Processor. For your first steps in understanding how to use Jackson, following tutorials are good places to start:
Starred by 756 users
Forked by 112 users
🌐
GitHub
github.com › java-json-tools
Java Json Tools · GitHub
A fully functional Java implementation of URI templates (RFC 6570): create URIs for your REST API without room for errors ... A JSON Schema validation implementation in pure Java, which aims for correctness and performance, in that order
🌐
GitHub
github.com › jdereg › json-io
GitHub - jdereg/json-io: Convert Java to JSON/TOON and back. Supports complex object graphs, cyclic references, and TOON format for 40-50% LLM token savings
Convert Java to JSON/TOON and back. Supports complex object graphs, cyclic references, and TOON format for 40-50% LLM token savings - jdereg/json-io
Starred by 371 users
Forked by 121 users
Languages   Java 99.8% | JavaScript 0.2% | Java 99.8% | JavaScript 0.2%