我目前正在使用Kotlin函数从具有键值对的Json结构中提取地图.
"values": [ { "label": "Email","value": "email" },{ "label": "Social media","value": "socialMedia" },{ "label": "Word of mouth","value": "wordOfMouth" },{ "label": "Newspaper","value": "newspaper" } ],
JSON“标签”应该成为地图的关键,“价值”应该成为它的价值.
这是使用Java 8的流收集方法将JSON提取并转换为映射的代码.
fun extractValue(jsonNode: JsonNode?): Map<String,String> { val valuesNode = jsonNode?.get("values") ?: mapper.createArrayNode() return valuesNode.map { Pair(it.get("label")?.asText() ?: "",it.get("value")?.asText() ?: "") } .stream().collect({ HashMap<String,String>()},{ m,p -> m.put(p.first,p.second) },p -> }) }
你如何用stream()编写部分.收集惯用的Kotlin?您有什么替代品可以替换
stream().collect()
在这种特殊情况下?
解决方法
所以你有一个对列表,你想将它转换为地图?你可以用Kotlin的toMap()替换你的.stream().collect(…).
来自Kotlin文档:
来自Kotlin文档:
fun <K,V> Iterable<Pair<K,V>>.toMap(): Map<K,V>
Returns
a new map containing all key-value pairs from the given collection of
pairs.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/to-map.html