我想离线存储我的服务器响应。
这是我的代码:
public void loadJSON() {
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(4, TimeUnit.SECONDS)
.readTimeout(4, TimeUnit.SECONDS)
.writeTimeout(4, TimeUnit.SECONDS)
.build();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(Config.URL_MAIN + sid + "/")
.addConverterFactory(GsonConverterFactory.create())
.client(client)
.build();
RequestInterfacePlanGesamt request = retrofit.create(RequestInterfacePlanGesamt.class);
Call<JSONResponsePlanGesamt> call = request.getJSON();
call.enqueue(new Callback<JSONResponsePlanGesamt>() {
@Override
public void onResponse(Call<JSONResponsePlanGesamt> call, Response<JSONResponsePlanGesamt> response) {
//bla bla
}
}
public interface RequestInterfacePlanGesamt {
@Headers({
"User-Agent: android"
})
@GET(Config.GESAMT)
Call<JSONResponsePlanGesamt> getJSON();
}
如何离线使用内容?我已经阅读了一些关于缓存的文章,但我真的不知道如何实现我的内容的离线使用。
答案 0 :(得分:1)
只需在OkHttpClient Builder中使用cache()
方法:
private static final long CACHE_SIZE = 10 * 1024 * 1024; // 10 MB
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(4, TimeUnit.SECONDS)
.readTimeout(4, TimeUnit.SECONDS)
.writeTimeout(4, TimeUnit.SECONDS)
.cache(new Cache(getApplication().getCacheDir(), CACHE_SIZE))
.build();