sonofjson:对 Scala 更好的 JSON 支持

时间:2024-06-20 06:18:26
【文件属性】:

文件名称:sonofjson:对 Scala 更好的 JSON 支持

文件大小:15KB

文件格式:ZIP

更新时间:2024-06-20 06:18:26

Scala

JSON 之子 一个用于处理JSON的Scala库,使其几乎感觉像是本机的。 如果您想了解它与 json4s 的比较,您可能有兴趣在阅读。 ① 只需要一次导入 import nl.typeset.sonofjson._ ② 创建对象很容易 // You can parse it from a String val person = parse("""{ "name" : { "first" : "John", "last" : "Doe" } }""") // Or build it yourself val person = obj( name = obj( first = "John", last = "Doe" ) ) ③ 访问也很容易 // Access the object and ask for a String representation


【文件预览】:
sonofjson-master
----.travis.yml(188B)
----src()
--------test()
--------main()
----build.sbt(529B)
----.gitignore(39B)
----project()
--------build.properties(19B)
----README.md(1KB)

网友评论