• OkHttp 根据服务器返回的的过期时间设置缓存


    据返回的缓存时间来缓存响应,可以通过使用OkHttp的CacheControlResponseCacheInterceptor来实现。以下是一个示例代码

    1. // 创建缓存目录和缓存对象
    2. File cacheDirectory = new File(context.getCacheDir(), "http-cache");
    3. int cacheSize = 10 * 1024 * 1024; // 10 MiB
    4. Cache cache = new Cache(cacheDirectory, cacheSize);
    5. // 创建OkHttpClient实例,并添加自定义的ResponseCacheInterceptor
    6. OkHttpClient client = new OkHttpClient.Builder()
    7. .cache(cache)
    8. .addNetworkInterceptor(new ResponseCacheInterceptor())
    9. .build();
    10. class ResponseCacheInterceptor implements Interceptor {
    11. @Override
    12. public Response intercept(Chain chain) throws IOException {
    13. Request request = chain.request();
    14. Response originalResponse = chain.proceed(request);
    15. if (originalResponse.isSuccessful()) {
    16. // 获取服务器返回的缓存相关信息
    17. String cacheControl = originalResponse.header("Cache-Control");
    18. String expires = originalResponse.header("Expires");
    19. // 根据缓存相关信息判断是否需要缓存
    20. boolean shouldCache = shouldCacheResponse(cacheControl, expires);
    21. if (shouldCache) {
    22. // 设置缓存的有效期为服务器返回的缓存时间
    23. CacheControl cacheControlHeader = new CacheControl.Builder()
    24. .maxAge(getMaxAge(cacheControl))
    25. .build();
    26. // 构建新的响应并返回
    27. Response cachedResponse = originalResponse.newBuilder()
    28. .header("Cache-Control", cacheControlHeader.toString())
    29. .build();
    30. return cachedResponse;
    31. }
    32. }
    33. return originalResponse;
    34. }
    35. }
    36. // 判断是否应该缓存响应的方法
    37. private boolean shouldCacheResponse(String cacheControl, String expires) {
    38. if (cacheControl == null && expires == null) {
    39. return false;
    40. }
    41. // 判断缓存控制头中是否包含no-store、no-cache指令
    42. if (cacheControl != null && (cacheControl.contains("no-store") || cacheControl.contains("no-cache"))) {
    43. return false;
    44. }
    45. // 判断过期时间是否已过期
    46. if (expires != null) {
    47. try {
    48. Date expirationDate = HttpDate.parse(expires);
    49. Date currentDate = new Date();
    50. if (expirationDate != null && expirationDate.before(currentDate)) {
    51. return false;
    52. }
    53. } catch (ParseException e) {
    54. e.printStackTrace();
    55. }
    56. }
    57. return true;
    58. }
    59. // 获取缓存的最大有效时间
    60. private int getMaxAge(String cacheControl) {
    61. if (cacheControl != null) {
    62. CacheControl cc = CacheControl.parse(cacheControl);
    63. return cc.maxAgeSeconds();
    64. }
    65. return -1;
    66. }

    在上述示例中,我们创建了一个自定义的ResponseCacheInterceptor拦截器,并将其添加到OkHttpClient中。该拦截器会在每次网络请求返回响应后进行处理。

    在拦截器中,我们从服务器的响应中获取Cache-ControlExpires头部信息,并使用shouldCacheResponse()方法判断是否需要缓存响应。如果需要缓存,我们根据服务器返回的缓存时间构建新的响应,并设置对应的Cache-Control头部,然后返回新的响应。

  • 相关阅读:
    数据隐私新篇章:Facebook如何保护用户信息
    python 常用库大全,方法大全(持续更新UP)
    springsecurity UserDetailsService的loadUserByUsername无法获取参数 坑位填补
    【RocketMQ】消息的消费总结
    【BOOST C++容器专题03】【01】Boost.MultiIndex
    面向6G的编码调制和波形技术
    rac节点停止和启动
    云计算的三种服务模式:IaaS,PaaS和SaaS
    关于MySQL并发控制的基础,你知道吗?
    PyTorch 中的乘法:mul()、multiply()、matmul()、mm()、mv()、dot()
  • 原文地址:https://blog.csdn.net/I_can_move_you/article/details/132919793