I have to use HEAD method of HttpClient to get the header field and to check the "last-modified" date of server file . I am not able to get that, if you know how to get the header field then please reply. how to get the "last-modified" header into the String object for the comparison.
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());
}