如何使用SharedPreference保存自定义ArrayList?

时间:2015-10-01 02:49:41

标签: java android arraylist android-sharedpreferences

我想知道如何将自定义ArrayList保存到Android手机中。 因为它习惯于过滤活动。 我应该把这些信息保存在任何地方。

ArrayList<ListAdapterItemsSelected> mSelectedList = new ArrayList<ListAdapterItemsSelected>();

public class ListAdapterItemsSelected {
    public String  sText;
    public boolean bSelected;

    public String getsText() {
        return sText;
    }

    public void setsText(String sText) {
        this.sText = sText;
    }


    public boolean isbSelected() {
        return bSelected;
    }


    public void setbSelected(boolean bSelected) {
        this.bSelected = bSelected;
    }  

    public ListAdapterItemsSelected(String _text, boolean _selected) {
        sText = _text;
        bSelected = _selected;
    }
}

3 个答案:

答案 0 :(得分:4)

使用GSON

Gson gson = new Gson();

ArrayList<ListAdapterItemsSelected> mSelectedList = new ArrayList<ListAdapterItemsSelected>();
String jsonString = gson.toJson(mSelectedList);
SharedPreferences sp = context.getSharedPreferences("KEY", Context.MODE_PRIVATE);

//Save to SharedPreferences
sp.edit().putString("KEY", jsonString).commit();

//Get to SharedPreferences

//For default value, just to get no errors while getting no value from the SharedPreferences
String empty_list = gson.toJson(new ArrayList<ListAdapterItemsSelected>()); 

ArrayList<ListAdapterItemsSelected> mSelectedList = gson.fromJson(sp.getString("KEY", empty_list),
        new TypeToken<ArrayList<ListAdapterItemsSelected>>() {
        }.getType());

答案 1 :(得分:0)

现在有通用的方法。您可以通过任何方法将其转换为字符串,例如使用json转换器或使用第三方库,如:

hawk:Secure Simple Key-Value Storage for Android

答案 2 :(得分:0)

SharedPreferences对于这类事情并不是很好。您甚至无法轻松存储List String s而不使用某些讨厌的黑客,更不用说List个自定义对象了。我个人将List存储为内部存储中的文件,使用DataOutputStream首先写出ArrayList的大小,然后是boolean的序列和对象的String值。