我添加了缓存的可能性,并发生以下脚本: 如果页面先前已上传,但如果我第一次没有上网,则一切正常 然后应用程序崩溃并抛出错误
NullPointerException: Attempt to invoke interface method 'java.lang.Object[] java.util.Collection.toArray()' on a null object reference
at java.util.ArrayList.<init>(ArrayList.java:171)
at n.MainDetailTrainFragment$3.onResponse(MainDetailTrainFragment.java:171)
我理解错误,但我该如何解决?
不要严格判断,我只是学习这个。 这是我的代码^
progressBarTrain.setVisibility(View.VISIBLE);
Log.d(TAG, "getProducts");
final OkHttpClient client = new OkHttpClient
.Builder()
.cache(new Cache(getActivity().getCacheDir(), 10 * 1024 * 1024)) // 10 MB
.addInterceptor(new Interceptor() {
@Override public okhttp3.Response intercept(@NonNull Chain chain) throws IOException {
Request request = chain.request();
if (NetworkUtils.isNetworkAvailable(getActivity())) {
request = request.newBuilder().header("Cache-Control", "public, max-age=" + 60).build();
} else {
request = request.newBuilder().header("Cache-Control", "public, only-if-cached, max-stale=" + 60 * 60 * 24 * 7).build();
}
return chain.proceed(request);
}
})
.build();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(MY_URL)
.client(client)
.addConverterFactory(SimpleXmlConverterFactory.create())
.build();
retrofit.create(myTrainInterface.class)
.getProducts(APP_ID, FROM_CITY, position_0, "everyday")
.enqueue(new Callback<Responce>() {
@SuppressLint("SetTextI18n")
@Override
public void onResponse(@NonNull Call<Responce> call, @NonNull Response<Responce> response) {
progressBarTrain.setVisibility(View.INVISIBLE);
if (response.body() != null) {
kk = response.body().products;
}
ArrayList<Responce.Item> p = new ArrayList<>(kk);
String s = String.valueOf(response.body());
adapter = new DetailTrainAdapter(p);
recyclerView.setAdapter(adapter);
Log.d(TAG, s);
textError.setVisibility(TextView.INVISIBLE);
textErrorRestart.setVisibility(TextView.INVISIBLE);
}
@Override
public void onFailure(@NonNull Call<Responce> call, @NonNull Throwable throwable) {
Log.d(TAG, "onFailure" + throwable.getLocalizedMessage());
textError();
}
});
答案 0 :(得分:0)
当变量kk
为null
时,NPE会被抛出。
查看您的代码,您需要在响应中创建一个列表(如果不是null
),然后使用它来填充您的UI。但是,如果回复为null
,则您没有为kk
分配任何内容,因此它会保留其先前的值(最可能为null
,给定NPE)。
避免这种情况的一种可能解决方案是执行创建适配器的所有逻辑,并仅在response.body() != null
时将其设置为UI组件,否则您可能想要执行其他操作(例如,显示错误。)