如何在60分钟后删除共享首选项

时间:2015-12-10 23:35:38

标签: android android-sharedpreferences

我想存储登录数据,但我希望在60分钟后删除该数据。 这样做的正确方法是什么?

应用程序可以在这60分钟内关闭,停止,打开。 我不想使用内部数据库。

以下是我访问DECLARE @EmpID INT = 100 ;WITH cte AS ( SELECT v.RowNum, v.StartDate, v.EndDate, v.EmpID FROM VacationSlots v WHERE v.EmpID = @EmpID ) -- cte returns currently selecting employees previous selections. Needed for comparison later SELECT s.RowNum, s.StartDate, s.EndDate FROM VacationSlots s WHERE s.EmpID IS NULL AND NOT EXISTS ( SELECT 1 FROM cte WHERE ( s.StartDate BETWEEN cte.StartDate AND cte.EndDate OR s.EndDate BETWEEN cte.StartDate AND cte.EndDate OR cte.StartDate BETWEEN s.StartDate AND s.EndDate OR cte.EndDate BETWEEN s.StartDate AND s.EndDate ) )

的代码
SharedPreferences

2 个答案:

答案 0 :(得分:2)

我认为最简单,最直接的方法是保持过期日期:

SharedPreferences sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString("Username", usernameTxt);
editor.putString("Password", passwordTxt);
editor.putLong("ExpiredDate", System.currentTimeMillis() + TimeUnit.MINUTES.toMillis(60));
editor.apply();

然后检查

SharedPreferences sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
if (sharedpreferences.getLong("ExpiredDate", -1) > System.currentTimeMillis()) {
    // read email and password
} else {
    SharedPreferences.Editor editor = sharedpreferences.edit();
    editor.clear();
    editor.apply();
}

但是,@ CommonsWare是正确的,保持信息只是在你的过程中更正确。

答案 1 :(得分:0)

就个人而言,我不会那样实施。将信息保留在您的流程中,以便在您的流程执行时数据消失。

话虽如此,欢迎您使用JobSchedulerAlarmManager来安排将来要完成的工作,无论您当时的应用状态如何。