0

我在更新 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 的密码,但我不知道从哪里开始。

有人可以给我指导吗?

4

0 回答 0