次のコード行を使用して、Retrofit2を使用して送信されたすべてのリクエストにデフォルトヘッダーを追加しています。
private static OkHttpClient defaultHttpClient = new OkHttpClient();
static {
defaultHttpClient.networkInterceptors().add(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request().newBuilder()
.addHeader("Accept", "Application/JSON").build();
return chain.proceed(request);
}
});
}
レトロフィットをベータ3バージョンにアップグレードした後、OkHttpをOkHttp3にアップグレードする必要がありました(実際、パッケージ名をokhttpからokhttp3に変更しました。ライブラリはレトロフィットに含まれています)。その後、この行から例外を取得します。
defaultHttpClient.networkInterceptors().add(new Interceptor());
原因:Java.util.Collections $ UnmodifiableCollection.add(Collections.Java:932)でのJava.lang.UnsupportedOperationException
原因:Java.lang.ExceptionInInitializerError
ここで問題は何ですか?
OkHttp(3)Clientオブジェクトを作成する場合は、ビルダーを使用する必要があります。
これを変更してみてください:
private static OkHttpClient defaultHttpClient = new OkHttpClient();
このようなものに:
OkHttpClient defaultHttpClient = new OkHttpClient.Builder()
.addInterceptor(
new Interceptor() {
@Override
public Response intercept(Interceptor.Chain chain) throws IOException {
Request request = chain.request().newBuilder()
.addHeader("Accept", "Application/JSON").build();
return chain.proceed(request);
}
}).build();
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile "com.squareup.retrofit2:converter-gson:2.1.0"
compile "com.squareup.retrofit2:adapter-rxjava:2.1.0"
compile 'com.squareup.okhttp3:logging-interceptor:3.4.0'
おそらくこれらのバージョンを使用する必要があります。それらを置いてくださいgradleを同期、すべてのインポートを削除し、再試行してください。
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import okhttp3.logging.HttpLoggingInterceptor;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
V.Schの答えを合計するには、Java Lambdaを使用して、これを
OkHttpClient httpClient = new OkHttpClient.Builder()
.addInterceptor(
chain -> {
Request request = chain.request().newBuilder()
.addHeader("Accept", "Application/JSON").build();
return chain.proceed(request);
}).build();