Following is the code.
To Store an Object into a shared preference
public void saveObject()
{
AccountVO accountVO1 = new AccountVO("1", "scott", "password", "scott@mail.com", "Scott", "Stanford");
accountsSharedPreference = context.getSharedPreferences("AccountsPrefsFile",Context.MODE_WORLD_PRIVATE);
accountsPreferenceEdit = accountsSharedPreference.edit();
accountsPreferenceEdit.putString("accountObject", accountVO1.toString());
accountsPreferenceEdit.commit();
}
To retrieve the object from the same shared preference
public AccountVO loadObject()
{
AccountVO accountVO1 = null;
accountsSharedPreference = context.getSharedPreferences("AccountsPrefsFile",context.MODE_PRIVATE);
String accounntsObjectString = accountsSharedPreference.getString("accountObject", "");
//My issue ? --- How to retreive the AccountVO object from "accountObject" String here????
return accountVO1;
}
My AccountVO class code is as follows:
public class AccountVO
{
private String id;
private String username;
private String password;
private String email;
private String firstName;
private String lastName;
public AccountVO(String tempID, String tempUserName, String tempPassword, String tempEmail, String tempFirstName, String tempLastName)
{
this.id = tempID;
this.username = tempUserName;
this.password = tempPassword;
this.email = tempEmail;
this.firstName = tempFirstName;
this.lastName = tempLastName;
}
public String getId()
{
return id;
}
public String getUserName()
{
return username;
}
public String getEmail()
{
return email;
}
public String getFirstName()
{
return firstName;
}
public String getLastName()
{
return lastName;
}
}
Anyone tell me how to retrieve AccountVO object from accountObject string in the loadObject method.