gpt4 book ai didi

android - Retrofit 2 拦截器具有私有(private)访问权限

转载 作者:行者123 更新时间:2023-11-29 20:24:01 25 4
gpt4 key购买 nike

我正在关注这篇文章:http://inthecheesefactory.com/blog/retrofit-2.0/en

并尝试如下添加拦截器:

package test.com.testretrofit2;

import com.squareup.okhttp.Interceptor;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Response;

import java.io.IOException;

public class InterceptorTest {

OkHttpClient client = new OkHttpClient();
client.interceptors().add(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Response response = chain.proceed(chain.request());

// Do anything with response here

return response;
}
});
}

不过,就行了

client.interceptors().add(new Interceptor() {

我得到一个错误

'interceptors' has private access in com.squareup.okhttp.OkHttpClient.

我在用

com.squareup.retrofit:retrofit:2.0.0-beta1

它正在引入 okhttp-2.5.0。我查看了 OkhttpClient.java 并且 interceptors() 是公开的。

我是否使用了错误的 Retrofit 2.0 库或版本?

最佳答案

编辑(事情的真相)--

您的代码需要在方法中,而不仅仅是在类中。

public class InterceptorTest {

void myTest() {
OkHttpClient client = new OkHttpClient();
client.interceptors().add(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Response response = chain.proceed(chain.request());

// Do anything with response here

return response;
}
});
}
}

编辑(另一种可能性)——

事实证明,如果在此代码之前的代码中有未终止的范围,您也会看到此错误。例如,

new Thread(new Runnable() {
@Override
public void run() {

});
client.interceptors().add(new SigningInterceptor());

将显示您在 IDE 中指示的错误,但会在编译时给出更多错误。请注意,Runnable 在此示例中未正确终止。它缺少一个 }。检查以确保您的 {} 位于应有的位置。

原始选项 --

您的错误与您发布的代码不匹配。如果该函数具有私有(private)访问权限,您应该会收到一条错误消息——

'interceptors()' has private access in com.squareup.okhttp.OkHttpClient.

注意 ()。

在这种情况下很重要,因为OkHttpClient 有一个名为interceptors 的私有(private)成员,但是有一个公共(public)的interceptors() 方法。

人们会预料到您会看到这一行的错误 --

client.interceptors.add(new Interceptor() {

请注意 拦截器 之后缺少的 ()。仔细检查您调用 interceptors 的所有地方的代码,看看您是否遗漏了括号。

关于android - Retrofit 2 拦截器具有私有(private)访问权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32813121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com