Domanda

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)
}
È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top