gpt4 book ai didi

scala - 将 JDouble 转换为 Double(JSON 库)

转载 作者:行者123 更新时间:2023-12-01 08:00:54 26 4
gpt4 key购买 nike

我正在使用 https://github.com/json4s/json4s .如何将其值(如 JDoubleJBool)转换为相应的 Scala 数据类型——DoubleBoolean

更新:

scala> (json \ "status")
res8: org.json4s.JValue = JBool(false)

scala> (json \ "status").extract[Boolean]
<console>:16: error: No org.json4s.Formats found. Try to bring an instance of org.json4s.Formats in scope or use the org.json4s.DefaultFormats.
(json \ "status").extract[Boolean]

最佳答案

Read Me 中所述,继承人如何做到这一点.. :)

  import org.json4s._
import org.json4s.native.JsonMethods._

implicit val formats = DefaultFormats

val json = parse("""
{
"mydouble" : 3.14,
"isPie" : true
}
""")

val dbl = (json \ "mydouble").extractOpt[Double]
//> dbl : Option[Double] = Some(3.14)
val bool = (json \ "isPie").extractOpt[Boolean]
//> bool : Option[Boolean] = Some(true)

关于scala - 将 JDouble 转换为 Double(JSON 库),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16941541/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com