我想用我的手机连接到我的应用程序数据库,但我一直看到这个错误:
Connection Error! java.net.socketTimedoutException:failed to connect to /192.168.1.6 (port : 80) from /192.168.1.7 (port : 53030) after 10000 ms
这是我的 API 类
public class API {
private static final String BASE_URL = "http://192.168.1.6/uni/";
public static Retrofit myRetrofit = null;
public static Retrofit getAPI() {
if (myRetrofit == null) {
myRetrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
}
return myRetrofit;
}
}
我检查防火墙并关闭窗口防御和防病毒 我检查了 this 和 this one,但没有一个能解决我的问题。 我检查了 httpd.conf 和我的应用程序中的端口,我也在模拟器中运行我的应用程序并且它工作正常,我的手机和我的笔记本电脑在同一个网络上,所以任何人都可以帮助我???