Android Volley getParam()方法不会调用JsonArrayRequest GET方法

时间:2016-07-10 05:36:56

标签: android android-studio android-volley getparameter

我想使用volley JsonArrayRequest使用参数执行GET请求。我用参数调用了getParam()方法但是没有调用。

JsonArrayRequest jreq = new JsonArrayRequest(Request.Method.GET,"http://api.openchargemap.io/v2/poi/",null,
            new Response.Listener<JSONArray>() {

                @Override
                public void onResponse(JSONArray response) {

                    Log.d("TAG", "" + response.toString());
                    if(response.toString().length() > 1) {
                        parseJson(response.toString());
                    }
                }
            }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Log.d("TAG",""+error.toString());
        }
    })

    {
        @Override
        protected Map<String, String> getParams() {
            Map<String,String> map = new HashMap<String,String>();
            map.put("output","json");
            map.put("countrycode","US");
            map.put("latitude","32.57933044");
            map.put("longitude","-110.8514633");
            map.put("maxresults","100");
            map.put("distance","10");
            map.put("distanceunit","KM");
            map.put("compact","true");
            map.put("verbose","false");
            return map;
        }
    };

    RequestQueue requestQueue = Volley.newRequestQueue(this);
    requestQueue.add(jreq);

我没有得到正确的回应,因为凌空没有调用getParam()。 我已经搜索了很多堆栈溢出但没有得到正确的答案,并且凌空文档并不好。这就是为什么我在这里提出我的问题。谢谢。

1 个答案:

答案 0 :(得分:2)

如下所示:

getParams():

  

返回用于POST或PUT请求的参数Map。能够   扔        * {@link AuthFailureError}因为可能需要身份验证才能提供这些值。      ...

因此,对于Request.Method.GET使用Uri.Builder而不是覆盖getParams方法来使用网址发送查询参数

如何使用Uri.Builder

Uri.Builder urlBuilder = new Uri.Builder();
            builder.scheme("http")
                    .authority("api.openchargemap.io")
                    .appendPath("v2")
                    .appendPath("poi")
                    .appendQueryParameter("output",json)
                    ...// add other paramters in same way
                   ;

从构建者获取最终网址:

 URL finalURL = new URL(urlBuilder.build().toString());

使用finalURL网址发出GET请求。