I am trying to get an array of objects from the server, using JSON.
The server sends me the following string.
\"[{\\\"DealComment\\\":null,\\\"DealVo
Just use:
try { jsonFormattedString = new JSONTokener(jsonString).nextValue().toString(); } catch (JSONException e) { e.printStackTrace(); }
See documentation