SharedPreferences内にHashmapを含むArrayListを保存したいと思います。これどうやってするの?
4586 次
1 に答える
5
コレクションをjsonに変換し、共有設定に保存できます。データを取得する必要があるときはいつでも、文字列を取得してJSONをコレクションに変換し直してください。
//converting the collection into a JSON
JSONArray result= new JSONArray(collection);
SharedPreferences pref = getApplicationContext().getSharedPreferences(PREF_NAME, 0);
//Storing the string in pref file
SharedPreferences.Editor prefEditor = pref.edit();
prefEditor.putString(KEY, result.toString());
prefEditor.commit();
//Getting the JSON from pref
String storedCollection = pref.getString(KEY, null);
//Parse the string to populate your collection.
ArrayList<HashMap<String, String>> collection = new ArrayList<HashMap<String, String>>();
try {
JSONArray array = new JSONArray(storedCollection);
HashMap<String, String> item = null;
for(int i =0; i<array.length(); i++){
String obj = (String) array.get(i);
JSONObject ary = new JSONObject(obj);
Iterator<String> it = ary.keys();
item = new HashMap<String, String>();
while(it.hasNext()){
String key = it.next();
item.put(key, (String)ary.get(key));
}
collection.add(item);
}
} catch (JSONException e) {
Log.e(TAG, "while parsing", e);
}
JSONは次のようになります。
[
"{test13=yeah3, test12=yeah2, test11=yeah1}",
"{test23=yeah3, test22=yeah2, test21=yeah1}",
"{test32=yeah2, test31=yeah1, test33=yeah3}"
]
于 2013-03-26T06:23:25.217 に答える