我想http://localhost:55154/
用 android 模拟器连接我的 web API,它的 URL 是 。
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 地址的多种变体,但没有一个有效。
我将此库用于我的异步连接:
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
通过我的浏览器连接。