I have a sample array:
[{
"abc":"1",
"de":"1"
},
{
"fgh":"2",
"ij":"4"
}]
which is a org.json4s.JsonAST.JValue.
How is it possible to iterate over each object inside the array, to operate on each object separately?
The following is your json.
scala> json
res2: org.json4s.JValue = JArray(List(JObject(List((abc,JString(1)), (de,JString(1)))),
JObject(List((fgh,JString(2)), (ij,JString(4))))))
There are several ways.
use for
syntax
for {
JArray(objList) <- json
JObject(obj) <- objList
} {
// do something
val kvList = for ((key, JString(value)) <- obj) yield (key, value)
println("obj : " + kvList.mkString(","))
}
convert to scala.collection
object
val list = json.values.asInstanceOf[List[Map[String, String]]]
//=> list: List[Map[String,String]] = List(Map(abc -> 1, de -> 1), Map(fgh -> 2, ij -> 4))
or
implicit val formats = DefaultFormats
val list = json.extract[List[Map[String,String]]]
//=> list: List[Map[String,String]] = List(Map(abc -> 1, de -> 1), Map(fgh -> 2, ij -> 4))
and do something.
for (obj <- list) println("obj : " + obj.toList.mkString(","))
Both outputs are
obj : (abc,1),(de,1)
obj : (fgh,2),(ij,4)
The document of json4s is here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With