使用Volley在HashMap中发送Int

时间:2014-12-14 01:54:23

标签: android android-volley

我已经实现了这个答案 - https://stackoverflow.com/a/19945676/4281848 在我的代码中它工作得很好,但是我目前正在尝试使用hashmap发送一个整数,它当然是说它只能发送字符串,我怎么能改变它以允许发送整数以及字符串

这是我目前的代码

    HashMap<String, Integer> params = new HashMap<String, Integer>();
                params.put("uid", userId);

                CustomRequest jsObjRequest = new CustomRequest(Request.Method.POST,
                        jsonUrl,params,
                        new Response.Listener<JSONObject>() {
                            @Override
                            public void onResponse(JSONObject response) {
                                try {
                                    VolleyLog.v("Response:%n %s", response.toString(4));
                                    int code = response.getInt("code");
                                    String message = response.getString("message");

                                } catch (JSONException e) {
                                    e.printStackTrace();
                                }
                            }
                        }, new Response.ErrorListener() {
                    @Override
                    public void onErrorResponse(VolleyError error) {
                        VolleyLog.e("Error: ", error.getMessage());
                    }
                });

                AppController.getInstance().addToRequestQueue(jsObjRequest, tag_json_obj);

感谢您提供的任何帮助

1 个答案:

答案 0 :(得分:6)

变化:

HashMap<String, Integer> params = new HashMap<String, Integer>();
            params.put("uid", userId);

HashMap<String, String> params = new HashMap<String, String>();
            params.put("uid", String.valueOf(userId));