Question

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)
}
Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top