kotlinx-serialization-csv
This module contains the CSV-Format.
Usage
firstName,lastName
John,Doe
Content copied to clipboard
To decode from the given CSV string:
@Serializable
data class Names(val firstName: String, val lastName: String)
CSVFormat.decodeFromString(Names.serializer(), csv)
Content copied to clipboard
And to encode:
CSVFormat.encodeToString(Names.serializer(), Names("John", "Doe"))
Content copied to clipboard
firstName,lastName
John,Doe
Content copied to clipboard
Quotes
"lastName";"firstName"
"Doe";"John"
Content copied to clipboard
To decode from the given CSV string with quotes and unordered attributes:
@Serializable
data class Names(val firstName: String, val lastName: String)
CSVFormat {
separator = ';'
alwaysEmitQuotes = true
}.decodeFromString(Names.serializer(), csv)
Content copied to clipboard
And to encode:
CSVFormat {
separator = ';'
alwaysEmitQuotes = true
}.encodeToString(Names.serializer(), Names("John", "Doe"))
Content copied to clipboard
"firstName";"lastName"
"John";"Doe"
Content copied to clipboard
Limitations
Inner lists are not supported, eg.
data class NotSupported(val innerList: List<String>)
Maps are not supported.