I am using HttpURLConnection to get data when i am making a REST API call.
HttpURLConnection connection = (HttpURLConnection) (new URL("http://" + account + ".table.core.windows.net/"+urlPath)).openConnection();
connection..connect();
The response that i am getting is chunked data that i found using WireShark. I want that data to be displayed in my application. How to get this chunked data using HttpURLConnection. ?? Below is response in wireshark