参考Best way to store a single user in an Android app?
上的问题和答案共享偏好如何实际运作?
我想做的是:
这可以通过共享偏好设置吗?或者我需要使用SQLlite吗? 我是Android新手,所以如果你附上一份有效的代码和解释,我真的很感激。
答案 0 :(得分:1)
只要您愿意在其中存储合理的机密数据,就可以使用共享首选项执行此操作。在存储和检索之间需要一些共享代码:
final static String pfName = "com.super.stuff.preffile.name";
final static String pfCodeForID = "com.super.stuff.pf.id";
final static String pfCodeForPassword = "com.super.stuff.pf.passwd";
final static String pfNoStringPresent = "NO-STRING-PRESENT-HERE";
final static pfCodes = MODE_PRIVATE; // See http://developer.android.com/reference/android/content/Context.html#getSharedPreferences(java.lang.String, int)
存储信息:
String ID = //whatever;
String password = //whatever;
SharedPreferences settings = context.getSharedPreferences(pfName, pfCodes);
SharedPreferences.Editor editor = settings.edit();
editor.putString(pfCodeForID, ID);
editor.putString(pfCodeForPassword, password);
editor.commit();
要检索信息:
SharedPreferences settings = context.getSharedPreferences(pfName, pfCodes);
String ID = editor.getString(pfCodeForID, pfNoStringPresent);
String password = editor.getString(pfCodeForPassword, pfNoStringPresent);
if (ID.contentEquals(pfNoStringPresent) && password.contentEquals(pfNoStringPresent)) {
// Handle the case of nothing stored, ie get ID and password
}
如果用户名和密码都与pfNoStringPresent相同,显然会失败!
如果您担心以这种方式存储敏感数据,则需要将其存储在数据库中,或以某种方式对其进行加密。当您将信息存储在属于向您提供ID信息的人的设备上时,您需要决定保护信息的重要程度,从手机获取此信息对于小偷的重要性等等。等
答案 1 :(得分:0)
使用Sqlite,它相当简单。请遵循:
public SQLiteDatabase sampleDB;
sampleDB = this.openOrCreateDatabase(TABLE_NAME, MODE_PRIVATE, null);
sampleDB.execSQL("CREATE TABLE IF NOT EXISTS " +
TABLE_NAME+ "(" + COLUMN_ID
+ " integer primary key autoincrement, " + COLUMN1
+ " text not null,"+ COLUMN2
+ " text not null);");
这里我有三个字段,其中column1和column2是具有值“username”和“password”的字符串。创建完成后,您可以根据需要执行查询。
答案 2 :(得分:0)
与AccountManager集成,然后使用setUserData ...我认为最好的方式。 :)