我在做一个项目,它工作得很好,但现在它不工作,每次它给我的错误,它无法连接。
这是我的java类
public class APIClient {
static Retrofit retrofit = null;
public static String Base_URL = "http://192.168.0.101:80/";
public static final String APPEND_URL = "/martzila/api/";
public static UserService getInterface() {
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(interceptor)
.build();
retrofit = new Retrofit.Builder()
.baseUrl(Base_URL)
.addConverterFactory(GsonConverterFactory.create())
.client(client)
.build();
return retrofit.create(UserService.class);
}
}
我试图在我的物理设备上运行,我的笔记本电脑和物理设备在同一个wifi网络上,但它仍然给我错误
E/Error: failed to connect to /192.168.0.101 (port 80) from /192.168.0.102 (port 32790) after 10000ms
请帮帮我我现在不知道该怎么办
暂无答案!
目前还没有任何答案,快来回答吧!