In ANDROID, is there any way to get the reponse time from an http request (Using httpClient for instance)
Am looking for an alternative to what Curl does.
In ANDROID, is there any way to get the reponse time from an http request (Using httpClient for instance)
Am looking for an alternative to what Curl does.
No there is no API to get you that. General approach is to capture the time before sending the request and after reading the response. Difference between them should give you a close but not the exact time for the response.