我正在尝试将密钥中的Map
写为int
到json字符串,但我无法这样做:
import org.json4s._
import org.json4s.jackson.JsonMethods._
import org.json4s.JsonDSL._
object MyObject {
def main(args: Array[String]) {
// Works fine
//val myMap = Map("a" -> List(3,4), "b" -> List(7,8))
// Does not work
val myMap = Map(4 -> Map("a" -> 5))
val jsonString = pretty(render(myMap))
println(jsonString)
}
我收到以下错误:
[error] /my_stuff/my_file.scala:14: overloaded method value render with alternatives:
[error] (value: org.json4s.JValue)org.json4s.JValue <and>
[error] (value: org.json4s.JValue)(implicit formats: org.json4s.Formats)org.json4s.JValue
[error] cannot be applied to (scala.collection.immutable.Map[Int,scala.collection.immutable.Map[String,Int]])
[error] val jsonString = pretty(render(myMap))
[error] ^
[error] one error found
[error] (compile:compileIncremental) Compilation failed
我模糊地理解错误消息,看起来渲染期望JValue作为输入,我不提供它,但我也不是第一种情况,并且代码按预期工作。
如何将这样的地图写入json字符串?
修改:我的困惑之源
我主要是python程序员,在python中
In [1]: import json
In [2]: wrong = {2: 5}
In [3]: with open("wrong.json") as f:
...: json.dump(wrong, f)
完全正常,当然python将2
字符串化。
答案 0 :(得分:3)
我认为这是预期的结果。如果您检查json specification,您将看到需要使用字符串作为元素的名称。
所以我担心你会需要这样的东西:
val myMap = Map("4" -> Map("a" -> 5))