0
我有格式的JSON字符串:JSON:對象中的對象解析成案例類
{
"id": {
"1": {
"name": "Andrew",
"age": 12,
"alive": "yes"
},
"2": {
"name": "Susan",
"age": 14,
"alive": "yes"
}
}
}
什麼是將此轉換成Scala中的一個案例類的最佳方式?
的情況下,類將在以下格式:
case class JsonParent(key:String, jsonNested : List[JsonChild]) case class JsonChild(key:String, jsonNested1 : List[JsonChildValues]) case class JsonChildValues(name:String, age:Int, alive:Boolean)
這是可能的,如果是的話會是什麼做的最好方法是什麼?
使用的JSON解析器 –
我一直沒能找到一個可以做什麼我需要簡單 –
我覺得「簡單」是主觀的。要回答這個問題,您需要做的就是查看所有可用的JSON解析庫並選擇您的首選:https://github.com/lauris/awesome-scala#json – JRomero