我正在尝试在我的应用程序中模拟像“缓存验证”这样的过程。 我将在设备上下载我的webapplication的新版本(基于android),但我只想下载基于etag比较的新版本的文件。 有没有人在Android中使用Etag机制的例子?
答案 0 :(得分:1)
您可以从HttpURLConnection对象访问ETag字段,例如:
HttpURLConnection conn = (HttpURLConnection)new URL(url).openConnection();
String etag = conn.getHeaderField("ETag");
当然,您需要确保您正在测试的服务器支持ETag。
答案 1 :(得分:0)
也许来自这个库(kevinsawicki)的课程“ HttpRequest ”会对你有帮助。
例如:
File latest = new File("/data/cache.json");
HttpRequest request = HttpRequest.get("http://google.com");
//Copy response to file
request.body(latest);
//Store eTag of response
String eTag = request.eTag();
//Later you can check if changes exist
boolean unchanged = HttpRequest.get("http://google.com")
.ifNoneMatch(eTag)
.notModified();
答案 2 :(得分:0)
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
try {
HttpResponse response = httpClient.execute(httpPost);
Log.d("Http Response:", response.getFirstHeader("etag").toString());
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
答案 3 :(得分:0)
您可以参考在Spring中执行etag生成和验证的 ShallowEtagHeaderFilter 的具体实现。