如何防止 Android 返回对我的 HTTP 请求的缓存响应?

发布于 2024-08-30 02:18:25 字数 427 浏览 4 评论 0原文

我正在编写一个客户端,它对随时间变化的 xml 数据发出重复的 http 请求。看起来 Android 堆栈正在缓存我的页面请求并重复返回同一页面。如何确保每次都会获得新页面?

-- 代码 ---

HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response;
    response = client.execute(request);

InputStream in;
in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));

谢谢, 格里

I'm writing a client that is making repeated http requests for xml data that is changing over time. It looks like the Android stack is caching my page requests and returning the same page repeatedly. How do I make sure it gets a fresh page each time?

-- code ---

HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response;
    response = client.execute(request);

InputStream in;
in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));

Thanks,
Gerry

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜血缘 2024-09-06 02:18:25

在 URL 末尾附加未使用的参数:

HttpGet request = new HttpGet(url + "?unused=" + someRandomString());

其中 someRandomString() 可能涉及当前时间。

它很粗糙,但它几乎可以保证工作,无论所有可能导致“正确”解决方案失败的外部因素如何,例如配置错误或有缺陷的代理。

Append an unused parameter on the end of the URL:

HttpGet request = new HttpGet(url + "?unused=" + someRandomString());

where someRandomString() probably involves the current time.

It's crude, but it's pretty much guaranteed to work regardless of all the outside factors that can make a "proper" solution fail, like misconfigured or buggy proxies.

清泪尽 2024-09-06 02:18:25

添加 HTTP 标头:

Cache-Control: no-cache

并查看是否有效。

add a HTTP header:

Cache-Control: no-cache

and see if that works.

失眠症患者 2024-09-06 02:18:25

提示:获取随机字符串

HttpGet request = new HttpGet(url + "?unused=" + UUID.randomUUID().toString());

Hint: to get the random string

HttpGet request = new HttpGet(url + "?unused=" + UUID.randomUUID().toString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文