W3cubDocs

/Kotlin

toProperties

Platform and version requirements: JVM (1.0)
fun Map<String, String>.toProperties(): Properties

Converts this Map to a Properties object.

import kotlin.test.*
import java.util.*

fun main(args: Array<String>) {
//sampleStart
val map = mapOf("x" to "value A", "y" to "value B")
val props = map.toProperties()

println(props.getProperty("x")) // value A
println(props.getProperty("y", "fail")) // value B
println(props.getProperty("z", "fail")) // fail
//sampleEnd
}

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/to-properties.html