将任何 Scala 对象转换为 JSON

编程入门 行业动态 更新时间:2024-10-27 15:21:00
本文介绍了将任何 Scala 对象转换为 JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我使用的是最新版本的 Play Framework,它是 JSON 库,就像这样 Json.toJson(obj).但是 toJson 不能将任何 Scala 对象转换为 JSON,因为数据的结构是未知的.有人建议使用 case convert,但在这里我的 Scala 知识不足.数据来自数据库,但不知道表的结构.

I am using latest version of Play Framework and it's JSON lib like this Json.toJson(obj). But toJson is not capable of converting any Scala object to JSON, because the structure of data is unknown. Someone suggested using case convert, but here my Scala knowledge falls short. The data comes from database, but the structure of table is not known.

我应该在哪里进一步创建将这种未知数据结构转换为 JSON?

Where should I look further to create convert such unknown data structure to JSON?

推荐答案

鉴于您想要序列化为 JSON 的类型数量有限,这应该可行:

Given that there is only a limited number of types you want to serialize to JSON, this should work:

object MyWriter { implicit val anyValWriter = Writes[Any] (a => a match { case v:String => Json.toJson(v) case v:Int => Json.toJson(v) case v:Any => Json.toJson(v.toString) // or, if you don't care about the value case _ => throw new RuntimeException("unserializeable type") }) }

到那时,您可以通过在要序列化 ​​Any 的位置导入隐式值来使用它:

You can use it by then by importing the implicit value at the point where you want to serialize your Any:

import MyWriter.anyValWriter val a: Any = "Foo" Json.toJson(a)

更多推荐

将任何 Scala 对象转换为 JSON

本文发布于:2023-06-10 05:43:08,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/608224.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:转换为   对象   Scala   JSON

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!