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)
}
Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top