使用Scala编程语言将jsonObject转换为Map

时间:2018-11-09 00:31:09

标签: json scala gson deserialization

我正在使用Scala编程语言。

我想将json对象转换为Map [String,String]

我的jsonObject看起来像

{"Key1":"Val1","Key2":"Val2","Key3":"Val3"}

我想要一张类似

的地图
Map("Key1" -> "Val1", "Key2" -> "Val2", "Key3" -> "Val3")

我该怎么做? 注意:我正在使用Gson进行其他json操作

谢谢

1 个答案:

答案 0 :(得分:0)