I have some code that does a bunch of HTTP GETs, POSTs, and PUTs using Commons HttpClient 3.1. I'd like to provide a current transfer speed indicator in ...
I am using somehting like below :
HttpClient httpclient = new DefaultHttpClient(); HttpGet httpGet = new HttpGet(targerFile); HttpResponse response = httpclient.execute(httpGet); // get ...