In android i need to know if we can store an object of a class in shared preference and retrieve the object latter.If it is possible how to do it.If it is not possible what are the other possibilities of doing it.I know serialization is one option but i am looking for possibilities using shared preference.

Any help is appreciated.

Thanks.

link|improve this question

78% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Not possible.

You can only store, simple values in SharedPrefences SharePreferences.Editor

What particularly about the class do you need to save?

link|improve this answer
Thanks.I want to store some data members of the class.And i don't want to store each values of data members using shared preference.I want to store it as an object.If not shared preference what are my other options? – androidGuy Mar 24 '11 at 11:25
Serialise it and store it, in a database (SQLite) / in a flat file. – Blundell Mar 24 '11 at 11:35
feedback

Do you need to retrieve the object even after the application shutting donw or just during it's running ?

You can store it into a database.
Or Simply create a custom Application class.

public class MyApplication extends Application {

    private static Object mMyObject;
    // static getter & setter
    ...
}

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application ... android:name=".MyApplication">
        <activity ... />
        ...
    </application>
    ...
</manifest>

And then from every activities do :

((MyApplication) getApplication).getMyObject();

Not really the best way but it works.

link|improve this answer
feedback

we can use Outputstream to output our Object to internal memory. And convert to string then save in preference. For example:

mPrefs = getPreferences(MODE_PRIVATE);
SharedPreferences.Editor ed = mPrefs.edit();
ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream(); 
ObjectOutputStream out;
try {
    out = new ObjectOutputStream(arrayOutputStream);
    out.writeObject(YOUR_OBJECT);
    out.close();
    arrayOutputStream.close();
} catch (IOException e) {
    e.printStackTrace();
}
ed.putString("myobject", arrayOutputStream.toString());
ed.commit();

when we need to extract Object from Preference. Use the code as below

ByteArrayInputStream byteArray = new ByteArrayInputStream(mPrefs.getString("myobject", "").getBytes());
ObjectInputStream in = new ObjectInputStream(byteArray);
MyObject myObject = (MyObject) in.readObject();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.