Android - 用Volley更新JSONObject

时间:2017-09-30 07:38:38

标签: android json android-volley jsonobjectrequest

我无法更新JSONObject。

基本上,我有用户名和密码,我使用JSONObject和Volley将它们放在我的服务器上。

这是我将JSONObject放入服务器的代码:

JSONObject jsonObject = new JSONObject();
try {
    jsonObject.putOpt("username", username);
    jsonObject.putOpt("password", password);
} catch (JSONException e) {
    e.printStackTrace();
}
RequestQueue queue = Volley.newRequestQueue(this);
JsonObjectRequest request = new JsonObjectRequest(Request.Method.PUT, url, requestBody, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject resp) {
            // Response handling
        }
    }, new Response.ErrorListener() {
        // Error handling
    });
queue.add(jsObjRequest);

现在,我正在尝试更改我传入JSONObject的密码,但我不知道从哪里开始。

有人可以给我一个指导吗?

0 个答案:

没有答案