6
Có thể trang bị thêm với OKHttp sử dụng dữ liệu bộ đệm khi ngoại tuyến
Tôi đang cố gắng sử dụng Retrofit & OKHttp để lưu các phản hồi HTTP. Tôi đã theo ý chính này và, kết thúc với mã này: File httpCacheDirectory = new File(context.getCacheDir(), "responses"); HttpResponseCache httpResponseCache = null; try { httpResponseCache = new HttpResponseCache(httpCacheDirectory, 10 * 1024 * 1024); } catch …