我无法更新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的密码,但我不知道从哪里开始。
有人可以给我一个指导吗?