Serialization

Serialization is the process of converting data used by an application to a format that can be transferred over a network or stored in a database or a file. In turn, deserialization is the opposite process of reading data from an external source and converting it into a runtime object. Together they are an essential part of most applications that exchange data with third parties.

Some data serialization formats, such as JSON and protocol buffers are particularly common. Being language-neutral and platform-neutral, they enable data exchange between systems written in any modern language.

In Kotlin, data serialization tools are available in a separate component, kotlinx.serialization. It consists of two main parts: the Gradle plugin –org.jetbrains.kotlin.plugin.serialization and the runtime libraries.

Libraries

kotlinx.serialization provides sets of libraries for all supported platforms – JVM, JavaScript, Native – and for various serialization formats – JSON, CBOR, protocol buffers, and others. You can find the complete list of supported serialization formats below.

All Kotlin serialization libraries belong to the org.jetbrains.kotlinx: group. Their names start with kotlinx-serialization- and have suffixes that reflect the serialization format and the target platform, such as -js or -native. Libraries for the JVM and for the common code of multiplatform projects contain no suffix. Examples:

  • org.jetbrains.kotlinx:kotlinx-serialization-core provides JSON serialization on the JVM.
  • org.jetbrains.kotlinx:kotlinx-cbor-js provides CBOR serialization on the JavaScript platform.

Note that kotlinx.serialization libraries use their own versioning structure, which doesn’t match the Kotlin's. Check out the releases on GitHub to find the latest versions.

Formats

kotlinx.serialization includes libraries for various serialization formats:

  • JSON: kotlinx-serialization-core
  • Protocol buffers: kotlinx-serialization-protobuf
  • CBOR: kotlinx-serialization-cbor
  • Properties: kotlinx-serialization-properties
  • HOCON: kotlinx-serialization-hocon (only on JVM)

Note that all libraries except JSON serialization (kotlinx-serialization-core) are in the experimental state, which means their API can be changed without notice.

There are also community-maintained libraries that support more serialization formats, such as YAML or Apache Avro. For detailed information about available serialization formats, see the kotlinx.serialization documentation.

Example: JSON serialization

Let’s take a look at how to serialize Kotlin objects into JSON.

Before starting, you’ll need to configure your build script so that you can use Kotlin serialization tools in your project:

  1. Apply the Kotlin serialization Gradle plugin org.jetbrains.kotlin.plugin.serialization (or kotlin(“plugin.serialization”) in the Kotlin Gradle DSL).

     plugins {
         id 'org.jetbrains.kotlin.jvm' version '1.4.10'
         id 'org.jetbrains.kotlin.plugin.serialization' version '1.4.10'  
     }
    
     plugins {
         kotlin("jvm") version "1.4.10"
         kotlin("plugin.serialization") version "1.4.10"
     }
    
  2. Add the JSON serialization library dependency:org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1

     dependencies {
         implementation 'org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1'
     } 
    
     dependencies {
         implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.0.1")
     } 
    

Now you're ready to use the serialization API in your code.

First, make a class serializable by annotating it with @Serializable.

@Serializable
data class Data(val a: Int, val str: String = "str")

You can now serialize an instance of this class by calling Json.encodeToString().

Json.encodeToString(Data(42))

As a result, you get a string containing the state of this object in the JSON format: {"a": 42, "b": "str"}

You can also serialize object collections, such as lists, in a single call.

val dataList = listOf(Data(42), Data(12, "test"))
val jsonList = Json.encodeToString(dataList)

To deserialize an object from JSON, use the decodeFromString() function:

val obj = Json.decodeFromString<Data>("""{"a":42}""")

For more information about serialization in Kotlin, see the Kotlin Serialization Guide.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/reference/serialization.html