如何存储Android的单用户登录数据?

时间:2013-03-14 16:29:36

标签: java android sqlite login sharedpreferences

参考Best way to store a single user in an Android app?

上的问题和答案

共享偏好如何实际运作?

我想做的是:

  • 首次使用用户打开应用时会添加登录ID和密码
  • 下次用户打开应用时,会使用之前的ID /密码和数据进行登录。 (我不想自动登录,因为我的应用程序中的数据会很敏感,因此即使是使用移动设备的朋友也无法看到它。)
  • 用户可以更改此ID /密码

这可以通过共享偏好设置吗?或者我需要使用SQLlite吗? 我是Android新手,所以如果你附上一份有效的代码和解释,我真的很感激。

3 个答案:

答案 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 ...我认为最好的方式。 :)