I am hitting a particular URL and getting some response from it. I am storing the response into a string. But my string stores about 3500 characters and then shows … . How can I make it to store all the response data into the String? Please note that response is a JSON.
Share
Since you are dealing with a large json, better use JsonReader . This way you wont have to worry about those dots, and the outofmemory exceptions.