我使用HTTP URL连接从我的Android应用程序调用REST API,但是当我在timeout exception
中运行应用程序时,我总是收到套接字emulator
。
我在browser
访问API时收到回复。此外,当我在移动设备上运行我的应用程序时,我得到了对移动数据的响应。
访问emulator
上的API时是否有任何设置(任何类型的代理设置)
我已尝试过以下代码,但仍然遇到套接字超时异常。
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("hostname", port number));
HttpURLConnection conn = (HttpURLConnection) url.openConnection(proxy);
请帮助。