Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I am downloading file from server. I have to take meta-information using HEAD method. andybody help me to implement the HEAD method to get "last-modified" date and modified-since date.

here is my code:

HttpClient client= new DefaultHttpClient();
//HttpGet get = new HttpGet(url);
HttpHead method = new HttpHead(url);
HttpResponse response= client.execute(method);

Header[] s=response.getAllHeaders();
System.out.println("THe header from the httpclient:");
for(int i=0; i < s.length; i++){
    Header hd = s[i];       
    System.out.println("Header Name: "+hd.getName()
        + "       " + " Header Value: " + hd.getValue());
}

//here I have to implement the HEAD method
share|improve this question
In the code example you gave us, you've already executed a full HEAD. this includes all the header information. Why would you want to do an additional HEAD after that? It seems redundant. The last-modified/modified-since are already there, if the server provides them. – Abel Oct 19 '11 at 13:59
Oh, and what language is this? I assumed C#, but these classes seem to be Apache classes, so perhaps Java? Please update. – Abel Oct 19 '11 at 14:12

1 Answer

The difference between a HEAD and a GET method is that the response will not contain a body. Otherwise, the two are the same. In other words, a HEAD method gets all the headers. It is not used for getting data of a single header, it just retrieves all headers at once.

In the code example you already have all headers, because you executed a HEAD request. In the for-loop you output all data from the headers. If the last-modified is not there, the server did not provide it for this resource.

Note that the if-modified-since is a request header field, not a response header field. You can set it to instruct the server to only return the resource if the modified-since date has passed. If you intend to only retrieve a resource when it has been modified on the server, you can just use a GET request with the if-modified-since header set. To know whether a server supports this header, check this tool: http://www.feedthebot.com/tools/if-modified/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.