如何将多个JSONObjects放入/获取到JSONArray?

时间:2013-05-11 09:32:50

标签: android sharedpreferences arrays

是否可以将多个不同的JSONObject存储到单个JSONArray中?这是结构,我想存储在JSONArray

[{"value1":1,"value2":900,"value3":1368349},{"value1":2,"value2":1900,"value3":136856},{"value1":3,"value2":600,"value3":136845}]

以下是我设置JSONObject并将其放入JSONArray

的代码
if(somecondition) {
  // putting values to json object
  jsonObj.put("value1", 1);
  jsonObj.put("value2", 900);
  jsonObj.put("value3", 1368349);
}
for(int i=0;i<=jsonArray.length();i++){
  jsonArray.put(jsonObj);
  appObj.setJsonAlarmArray(jsonArray);
  // appObj is object of Application Class
  editor= sharedPrefs.edit();
  editor.putString("key", jsonArray.toString());
  System.out.println(jsonArray.toString());
  editor.commit();
}

仅使用此代码,我在JSON对象中设置的最后一个值覆盖所有对象。有任何建议可以达到这个目的吗?

3 个答案:

答案 0 :(得分:38)

I found very good link for JSON. [Here][1]


  [1]: http://code.google.com/p/json-simple/wiki/EncodingExamples#Example_1-1_-_Encode_a_JSON_object

Here's code to add multiple JSONObjects to JSONArray.



    JSONArray obj = new JSONArray();
        try {
             for(int i = 0; i < 3; i++) {
                // 1st object
                JSONObject list1 = new JSONObject();
                list1.put("val1",i+1);
                list1.put("val2",i+2);
                list1.put("val3",i+3);
             }
        obj.put(list1); \\ insertion into jsonarray must be done after the loop
        } catch (JSONException e1) {
            // TODO Auto-generated catch block
          e1.printStackTrace();
        }

        Toast.makeText(MainActivity.this, ""+obj, Toast.LENGTH_LONG).show();        

答案 1 :(得分:10)

将值放入JSONObject之后,将JSONObject放入JSONArray之后。

这样的事情可能是:

jsonObj.put("value1", 1);
jsonObj.put("value2", 900);
jsonObj.put("value3", 1368349);
jsonArray.put(jsonObj);

然后创建新的JSONObject,将其他值放入其中并将其添加到JSONArray中:

jsonObj.put("value1", 2);
jsonObj.put("value2", 1900);
jsonObj.put("value3", 136856);
jsonArray.put(jsonObj);

答案 2 :(得分:0)

从android API级别19开始,当我想实例化JSONArray对象时,我将JSONObject直接放置为如下参数:

JSONArray jsonArray=new JSONArray(jsonObject);

JSONArray具有接受对象的构造函数。