com.android.volley.NoConnectionError:java.net.ConnectException:无法连接到/192.168.2.100:80

时间:2018-05-23 11:52:06

标签: android android-volley

    String URL = "http://192.168.2.100:8080/DemoRest/webapi/aliens";

    RequestQueue requestQueue = Volley.newRequestQueue(this);

    JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(
            Request.Method.GET,
            URL,
            null,
            new Response.Listener<JSONObject>() {
                @Override
                public void onResponse(JSONObject response) {
                    Log.e("Rest Response: ",response.toString());
                }
            },
            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    Log.e("Rest Response: ",error.toString());
                }
            }
    );
    requestQueue.add(jsonObjectRequest);

在这里,我试图从我的休息api获取json数据..它在邮递员上正常工作.. 我试图与Android链接我正在收到此错误

1 个答案:

答案 0 :(得分:0)

讨论了类似的问题here

如果您的服务器是从本地主机运行的,并且您正在模拟器上进行测试,则必须使用此documentation

中指定的正确IP地址