So, I am getting a json from a webservice:
[{"id":1,"Home":{"id":11,"homtype":{"id":4,"name":"2-bedroom"}, "image":[71,73,70,56,57,97,200,0,200,0,247,0,0,0,0,0,0,0,51,0,0,102,0,0,153,0,0,204,0,0,255,0,43,0,0,43,51,0,43,102,0,43,153,0,43,204,0,43,255,0,85,0,0,85,51,0,..]}]
This json is serialized already on the web service side. What I'd like to retrieve is the byte array of the image in my android app but I need to deserialize the json string first in my android. I am able to get the json string but how do I deserialize it?