I'm consuming a .NET json service that outputs a byte array. The byte arrary gets converted into the integer representation of each byte. When viewed in Fiddler, it looks like this:
{"imageBackground":[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,...]}
In Java, I've got the data back into a JSONObject, but I'm unfamiliar with Java so I'm not sure where to go from here to convert that into something usable. I suspect if I can get it back into a stream of some sort I should be able to make it viewable as an image (PNG/JPG/etc)...
Any tips form here?