gpt4 book ai didi

android - 使用 Volley 在 HashMap 中发送 Int

转载 作者:行者123 更新时间:2023-12-02 21:25:12 24 4
gpt4 key购买 nike

我已经实现了这个答案 - 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);

感谢您的帮助

最佳答案

更改:

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));

关于android - 使用 Volley 在 HashMap 中发送 Int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27465596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com