I have a byte array which was converted from a JSONArray. Now how to convert it back to JSONArray. Is there any simple lib to do this. Or do i have to use base64 as this post says? Here is the code to convert JSONArray to bytearray:
JSONArray arr = //some value;
byte[] bArr = arr.toString().getBytes();