Instead of HTTP GET you could do HTTP HEAD, which is just for such tests, not (or at least minimal) GETTING. – Joop EggenJan 24 at 10:51
Can i get time to first byte (that is time to receive first byte of the http response from a web server) using HTTP HEAD? – user1965653Jan 24 at 10:57
HEAD sends just the headers (that come after an empty line before the HTML content). Hence it is - besides ping nice for testing. Especially with GET you have to consider dynamically generated pages. – Joop EggenJan 24 at 12:29
As u have said HEAD is going to send headers..but headers do not contain first byte of the response..i mean not response body..i want to get first byte of the response body..how do i get it using java code.please suggest me some logic or code in java..thank you. – user1965653Jan 28 at 4:26