Tagged Questions

3
votes
3answers
1k views

Get Size of HTTP Response in Java

I would like to know how much data was sent in response to a certain http-request. What I currently do is this: HttpURLConnection con = (HttpURLConnection) feedurl.openConnection(); //check the ...