我想,以检查文件是否已给定的日期之后被修改。 我发现这个我试图使用Java的HttpURLConnection类做一个“条件GET”,但我从来没有得到一个304个状态码 。 这似乎是我所需要的。 但是,如果我尝试:
URLConnection connection = new URL("http://cdn3.sstatic.net/stackoverflow/img/favicon.ico").openConnection();
connection.setRequestProperty("If-Modified-Since", "Wed, 06 Oct 2010 02:53:46 GMT");
System.out.println(connection.getHeaderFields());
输出是:
{null=[HTTP/1.1 200 OK], ETag=["087588e2bb5cd1:0"],
Date=[Wed, 28 Nov 2012 12:39:31 GMT], Content-Length=[1150],
Last-Modified=[Sun, 28 Oct 2012 16:44:54 GMT], Accept-Ranges=[bytes],
Connection=[keep-alive], Content-Type=[image/x-icon], X-Cache=[HIT],
Server=[NetDNA-cache/2.2], Cache-Control=[max-age=604800]}
编辑
我试过今天的日期,但仍没有返回304。
周三,2012 GMT 12时59分56秒11月28日
它应该返回304,但你可以看到它没有任何帮助是挪用。
该文件已被修改。 改变你If-Modified-Since
后头部的东西Last-Modified
的结果。
我试了一下(用卷曲),这CDN似乎与日期的麻烦。 为了得到一个304
响应If-Modified-Since
请求,您需要提供确切Last-Modified
(这里太阳,2012年10月28日16时44分54秒GMT)的日期。 不用说,这是从这个CDN邪恶行为。
你应该使用这样的事情...
connection.addRequestProperty( “如果-Modified-Since的”,上次更改时间);
这里是代码:
try {
HttpResponseCache cache = responseCache.getInstalled();
cacheResponse = cache.get(uri, "GET",
new HashMap<String, List<String>>());
if (cacheResponse != null) {
Map<String, List<String>> headers = cacheResponse
.getHeaders();
List<String> eTagHeader = headers.get("ETag");
eTag = eTagHeader.get(0);
if (eTag != null) {
connection.addRequestProperty("If-None-Match", eTag);
}
if(headers.containsKey("Last-Modified")){
List<String> lastModifiedList = headers.get("Last-Modified");
if(null != lastModifiedList && !lastModifiedList.isEmpty()){
String lastModified = lastModifiedList.get(0);
if(null != lastModified){ connection.addRequestProperty("If-Modified-Since", lastModified);
}
}
}
}
} catch (IOException e1) {
Log.e(TAG, String.format("Cannot read from cache.", url),
e1);
}