我想连接我的web API,它的URL是http://localhost:55154/
,带有android模拟器。
AsyncHttpClient client = new AsyncHttpClient();
client.get("http://10.0.2.2:55154/api/values", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(String response) {
System.out.println(response);
}
});
但是,当我连接到google.pl
时,我没有得到任何响应
我尝试过使用localhost地址的多种变体,但都不起作用。
我正在将此liblary用于异步连接:http://loopj.com/android-async-http/
更新:
当我运行我的程序时,我从LogCat 中得到以下错误
07-17 08:58:26.495: E/Trace(879): error opening trace file: No such file or directory (2)
但是,我可以通过浏览器与http://localhost:55154/api/values
进行连接。
使用IP地址10.0.2.2
而不是10.0.0.2
参考http://developer.android.com/tools/devices/emulator.html#networkaddresses
像这样使用http://10.0.2.2:55154/
来连接您的端口地址