对于我的项目dijon,我想知道是否可以使用Scala pickle进行JSON序列化和反序列化。具体来说,我想要的是def toJsonString(json: JSON, prettyPrint: Boolean = false): String
和def fromJsonString(json: String): JSON
。如何使用酸洗来创建这两个助手方法?
这真的取决于你最方便的使用方式。这些是你所拥有的选择的草图:
import scala.pickling._, json._
// Uses macros implicitly on Scope
def toJSONString[A](obj: A, prettyPrint: Boolean = false)(implicit pickler: A => JSONPickle) = {
val json = pickler(obj)
myPrettyPrinter.print(json.value, prettyPrint)
}
// Uses macros defined elsewhere
def toJSONString(obj: Any, prettyPrint: Boolean = false) = {
val json = classToPicklerMap(obj.getClass)(obj)
myPrettyPrinter.print(json.value, prettyPrint)
}
// Uses runtime reflection
def toJSONString(obj: Any, prettyPrint: Boolean = false) = {
val json = obj.pickle
myPrettyPrinter.print(json.value, prettyPrint)
}
// Uses macros implicitly on scope
def fromJSONString[A](json: String)(implicit unpickler: JSONPickle => A): A = {
unpickler(JSONPickle(json))
}
// Uses macros defined elsewhere #1
def fromJSONString[A](json: String)(implicit c: ClassTag[A]) = {
classnameToUnpicklerMap(c.runtimeClass.getName)(json).asInstanceOf[A]
}
// Uses macros defined elsewhere #2
def fromJSONString(json: String): Any = {
val className = parseClassName(json) // Class name is stored in "tpe" field in the JSON
classnameToUnpicklerMap(className)(json)
}
// Uses runtime reflection
def fromJSONString(json: String) = JSONPickler(json).unpickle
我没有使用过Scala Pickling,但它在Github上说它还处于早期开发阶段。您可能还想尝试Spray JSON。它也支持你需要的东西