Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
org.apache.http.client.methods.HttpGetサーバーからプレーンテキストファイルを読み取るために使用しています。サーバーは、いかなる種類の「期限切れ」ヘッダーも送信していません。HttpGet を繰り返し呼び出すと、明らかに何らかのキャッシュから古いバージョンのテキスト ファイルが返されることがわかりました。
org.apache.http.client.methods.HttpGet
GET を強制的にキャッシュではなくサーバーに送る方法はありますか?
これを試して
addHeader("Cache-Control", "no-cache");