I am trying to get a JSON response from our server and the response string seems is always being truncated when the string length reaches to around 5525 characters.
Although its quite late but may help someone else i used this code to display complete LONG string. Found somewhere on same site
int maxLogSize = 1000;
for(int i = 0; i <= veryLongString.length() / maxLogSize; i++) {
int start = i * maxLogSize;<
int end = (i+1) * maxLogSize;
end = end > veryLongString.length() ? veryLongString.length() : end;
Log.v(TAG, veryLongString.substring(start, end));
}
Please Vote up if found helpful :)