ArrayList<Object> push = new ArrayList<Object>();
pin = (EditText) findViewById(R.id.editText2);
push.add("amam");
JSONObject json = new JSONObject();
try {
json.put("uniqueArrays", new JSONArray(push));
} catch (JSONException e) {
e.printStackTrace();
}
JSONObject jsosn = new JSONObject();
JSONArray items = jsosn.optJSONArray("uniqueArrays");
Log.d("retrived values",String.valueOf(items));
我正在尝试插入数组列表并检索它。谁能以最好的方法帮助我或以正确的方式指导我?
答案 0 :(得分:0)
您正在上面的行中创建一个新的JSONObject。那摆脱了旧的,留下了一个空的对象。