json-0.4.0

Simplify and extend GSON library.

Лицензия

Лицензия

Категории

Категории

Сеть JSON Данные
Группа

Группа

net.kut3
Идентификатор

Идентификатор

json
Последняя версия

Последняя версия

0.4.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

json-0.4.0
Simplify and extend GSON library.
Ссылка на сайт

Ссылка на сайт

http://kut3.net/json

Скачать json

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/net.kut3/json/ -->
<dependency>
    <groupId>net.kut3</groupId>
    <artifactId>json</artifactId>
    <version>0.4.0</version>
</dependency>
// https://jarcasting.com/artifacts/net.kut3/json/
implementation 'net.kut3:json:0.4.0'
// https://jarcasting.com/artifacts/net.kut3/json/
implementation ("net.kut3:json:0.4.0")
'net.kut3:json:jar:0.4.0'
<dependency org="net.kut3" name="json" rev="0.4.0">
  <artifact name="json" type="jar" />
</dependency>
@Grapes(
@Grab(group='net.kut3', module='json', version='0.4.0')
)
libraryDependencies += "net.kut3" % "json" % "0.4.0"
[net.kut3/json "0.4.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.google.code.gson : gson jar 2.8.5

Модули Проекта

Данный проект не имеет модулей.

JSON

Maven dependency

<dependency>
   <groupId>net.kut3</groupId>
   <artifactId>json</artifactId>
   <version>0.2.0</version>
</dependency>

Usage

Parsing from a JSON string

You should know exactly the JSON string is a JsonObject or a JsonArray.

// JsonObject   
JsonObject jo = JsonObject.parse("{...}");`  

// JsonArray  
JsonArray ja = JsonArray.parse("[...]");`   

Create new

// JsonObject   
JsonObject jo = new JsonObject();`

// JsonArray  
JsonArray ja = new JsonArray();`

Adapter for Gson

From v0.2.0 and upper

// JsonObject
com.google.gson.JsonObject gsonObj 
            = new com.google.gson.JsonObject();
    
JsonObject jo = new JsonObject(gsonObj);
    

// JsonArray
com.google.gson.JsonArray gsonArr
            = new com.google.gson.JsonArray();
            
JsonArray ja = new JsonArray(gsonArr);

Get and set

  • Use getXXX(String fieldName) methods to get the value of one field.
  • Use set(String fieldName, XXX fieldValue) to set value for a field (upsert)

To Json string

  • Use toString() method.

Loop

  • Use foreach(...) method to iterate fields of a JsonObject or items of a JsonArray.

Get size and empty checking

  • Use size() and isEmpty() methods.

Get all field names of a JsonObject

From v0.2.0 and upper

jo.fieldNames()

Версии библиотеки

Версия
0.4.0
0.3.0
0.2.0
0.1.0