简体   繁体   中英

How to add a key,value pair to JObject using json4s in Scala?

I parse json using json4s library: GitHub json4s

I have a empty JObject:

val json = JObject()

how to add key,value pair to JObject?

import org.json4s.JsonDSL._
json ~ ("foo" -> "bar")

or

json merge JObject("foo" -> JString("bar"))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM