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 オブジェクトで設定している最後の値のみをすべてのオブジェクトにオーバーライドします。これを達成するための提案はありますか?