How can I handle Byte in Json Scala API, for example parsing:

json.as[Byte]

Do I have to write own Reads?

implicit val ByteRead = new Reads[Byte] {
   override def reads(json: JsValue): JsResult[Byte] = JsSuccess(json.as[Int].toByte)
}
有帮助吗?

解决方案

Yupp, you'd have to use your own implementation as there is no built in Reads[Byte].

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top