FASTJSON 2
es una biblioteca Java JSON extremadamente eficaz y fácil de usar.
FASTJSON 2
es una actualización importante del proyecto FASTJSON
. En comparación con FASTJSON 1, el rendimiento ha mejorado enormemente y se han resuelto los problemas de seguridad de la función autoType debido a la compatibilidad y las listas blancas.JDK 11
/ JDK 17
, optimizado para compact string
, admite grabación y admite GraalVM Native-Image
JSONPath
, compatible con la sintaxis JSONPath de SQL:2016Android 8+
, un conjunto de API para cliente y servidorKotlin
https://alibaba.github.io/fastjson2/kotlin_cnJSON Schema
https://alibaba.github.io/fastjson2/json_schema_cn En fastjson v2
, groupId
es diferente de 1.x
, es com.alibaba.fastjson2
:
Maven
:
< dependency >
< groupId >com.alibaba.fastjson2</ groupId >
< artifactId >fastjson2</ artifactId >
< version >2.0.53</ version >
</ dependency >
Gradle
:
dependencies {
implementation ' com.alibaba.fastjson2:fastjson2:2.0.53 '
}
Puede ver la última versión disponible en maven.org.
Fastjson v1
Si utilizó originalmente la versión fastjson 1.2.x
, puede usar el paquete de compatibilidad. El paquete de compatibilidad no puede garantizar el 100% de compatibilidad. Pruébelo y verifíquelo cuidadosamente y proporcione comentarios oportunos si encuentra algún problema.
Maven
:
< dependency >
< groupId >com.alibaba</ groupId >
< artifactId >fastjson</ artifactId >
< version >2.0.53</ version >
</ dependency >
Gradle
:
dependencies {
implementation ' com.alibaba:fastjson:2.0.53 '
}
Fastjson Kotlin
Si el proyecto usa Kotlin
, puede usar el módulo fastjson-kotlin
y adoptar las características de kotlin
.
Maven
: < dependency >
< groupId >com.alibaba.fastjson2</ groupId >
< artifactId >fastjson2-kotlin</ artifactId >
< version >2.0.53</ version >
</ dependency >
Agregue la biblioteca estándar (kotlin-stdlib) y la biblioteca de reflexión (kotlin-reflect) según corresponda. Si usa una clase de datos (clase de datos) y pasa parámetros a través del constructor, agregue la biblioteca de reflexión.
< dependency >
< groupId >org.jetbrains.kotlin</ groupId >
< artifactId >kotlin-stdlib</ artifactId >
< version >${kotlin-version}</ version >
</ dependency >
< dependency >
< groupId >org.jetbrains.kotlin</ groupId >
< artifactId >kotlin-reflect</ artifactId >
< version >${kotlin-version}</ version >
</ dependency >
Kotlin Gradle
: dependencies {
implementation( " com.alibaba.fastjson2:fastjson2-kotlin:2.0.53 " )
}
dependencies {
implementation( " org.jetbrains.kotlin:kotlin-stdlib: $kotlin_version " )
implementation( " org.jetbrains.kotlin:kotlin-reflect: $kotlin_version " )
}
Fastjson Extension
Si el proyecto utiliza un marco como SpringFramework
, puede usar el módulo fastjson-extension
. Para su uso, consulte Soporte de SpringFramework.
Maven
:
< dependency >
< groupId >com.alibaba.fastjson2</ groupId >
< artifactId >fastjson2-extension-spring5</ artifactId >
< version >2.0.53</ version >
</ dependency >
< dependency >
< groupId >com.alibaba.fastjson2</ groupId >
< artifactId >fastjson2-extension-spring6</ artifactId >
< version >2.0.53</ version >
</ dependency >
Gradle
:
dependencies {
implementation ' com.alibaba.fastjson2:fastjson2-extension-spring5:2.0.53 '
}
dependencies {
implementation ' com.alibaba.fastjson2:fastjson2-extension-spring6:2.0.53 '
}
En fastjson v2
, package
es diferente de 1.x
, es com.alibaba.fastjson2
. Si estaba usando fastjson1
antes, en la mayoría de los casos puede simplemente cambiar el nombre del paquete.
JSON
en JSONObject
Java
:
String text = "..." ;
JSONObject data = JSON . parseObject ( text );
byte [] bytes = ...;
JSONObject data = JSON . parseObject ( bytes );
Kotlin
:
import com.alibaba.fastjson2.*
val text = .. . // String
val data = text.parseObject()
val bytes = .. . // ByteArray
val data = bytes.parseObject() // JSONObject
JSON
en JSONArray
Java
:
String text = "..." ;
JSONArray data = JSON . parseArray ( text );
Kotlin
:
import com.alibaba.fastjson2.*
val text = .. . // String
val data = text.parseArray() // JSONArray
JSON
en objetos Java
Java
:
String text = "..." ;
User data = JSON . parseObject ( text , User . class );
Kotlin
:
import com.alibaba.fastjson2.*
val text = .. . // String
val data = text.to< User >() // User
val data = text.parseObject< User >() // User
Java
a JSON
Java
:
Object data = "..." ;
String text = JSON . toJSONString ( data );
byte [] text = JSON . toJSONBytes ( data );
Kotlin
:
import com.alibaba.fastjson2.*
val data = .. . // Any
val text = text.toJSONString() // String
val bytes = text.toJSONByteArray() // ByteArray
JSONObject
y JSONArray
String text = "{ " id " : 2, " name " : " fastjson2 " }" ;
JSONObject obj = JSON . parseObject ( text );
int id = obj . getIntValue ( "id" );
String name = obj . getString ( "name" );
String text = "[2, " fastjson2 " ]" ;
JSONArray array = JSON . parseArray ( text );
int id = array . getIntValue ( 0 );
String name = array . getString ( 1 );
JavaBean
Java
:
JSONArray array = ...
JSONObject obj = ...
User user = array . getObject ( 0 , User . class );
User user = obj . getObject ( "key" , User . class );
Kotlin
:
val array = .. . // JSONArray
val obj = .. . // JSONObject
val user = array.to< User >( 0 )
val user = obj.to< User >( " key " )
JavaBean
Java
:
JSONArray array = ...
JSONObject obj = ...
User user = obj . toJavaObject ( User . class );
List < User > users = array . toJavaList ( User . class );
Kotlin
:
val array = .. . // JSONArray
val obj = .. . // JSONObject
val user = obj.to< User >() // User
val users = array.toList< User >() // List<User>
JavaBean
a JSON
Java
:
class User {
public int id ;
public String name ;
}
User user = new User ();
user . id = 2 ;
user . name = "FastJson2" ;
String text = JSON . toJSONString ( user );
byte [] bytes = JSON . toJSONBytes ( user );
Kotlin
:
class User (
var id : Int ,
var name : String
)
val user = User ()
user.id = 2
user.name = " FastJson2 "
val text = user.toJSONString() // String
val bytes = user.toJSONByteArray() // ByteArray
Resultado de serialización:
{
"id" : 2 ,
"name" : " FastJson2 "
}
JSONB
JavaBean
JSONB
User user = ...;
byte [] bytes = JSONB . toBytes ( user );
byte [] bytes = JSONB . toBytes ( user , JSONWriter . Feature . BeanToArray );
JSONB
en JavaBean
byte [] bytes = ...
User user = JSONB . parseObject ( bytes , User . class );
User user = JSONB . parseObject ( bytes , User . class , JSONReader . Feature . SupportBeanArrayMapping );
JSONPath
JSONPath
para leer algunos datos String text = ...;
JSONPath path = JSONPath . of ( "$.id" ); // 缓存起来重复使用能提升性能
JSONReader parser = JSONReader . of ( text );
Object result = path . extract ( parser );
JSONPath
para leer datos byte[]
parciales byte [] bytes = ...;
JSONPath path = JSONPath . of ( "$.id" ); // 缓存起来重复使用能提升性能
JSONReader parser = JSONReader . of ( bytes );
Object result = path . extract ( parser );
JSONPath
para leer datos byte[]
parciales byte [] bytes = ...;
JSONPath path = JSONPath . of ( "$.id" ); // 缓存起来重复使用能提升性能
JSONReader parser = JSONReader . ofJSONB ( bytes ); // 注意这里使用ofJSONB方法
Object result = path . extract ( parser );