在Android中使用SharedPreferences来保存7

2023-07-03  本文已影响0人  摩卡不要糖

先上代码

import android.content.Context;  
import android.content.SharedPreferences;  
import java.util.Date;  
  
public class LoginManager {  
    private static final String PREF_NAME = "login_status";  
    private static final String KEY_USERNAME = "username";  
    private static final String KEY_LAST_ LoginTime = "last_login_time";  
  
    public static void setLoginStatus(Context context, String username, long lastLoginTime) {  
        SharedPreferences.Editor editor = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE).edit();  
        editor.putString(KEY_USERNAME, username);  
        editor.putLong(KEY_LAST_LOGIN_TIME, lastLoginTime);  
        editor.apply();  
    }  
  
    public static boolean isLoggedIn(Context context) {  
        SharedPreferences prefs = context.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE);  
        long lastLoginTime = prefs.getLong(KEY_LAST_LOGIN_TIME, 0);  
        if (new Date().getTime() - lastLoginTime < 7 * 24 * 60 * 60 * 1000) {  
            return true; // 7天内登录过,仍然视为登录状态  
        } else {  
            return false;  
        }  
    }  
}

在上面的示例代码中,我们定义了一个名为LoginManager的类,其中包括两个方法:setLoginStatus()和isLoggedIn()。setLoginStatus()方法用于设置登录状态,包括用户名和上一次登录时间。isLoggedIn()方法用于判断用户是否处于登录状态,如果上一次登录时间距今不足7天,则认为用户仍然处于登录状态。

在setLoginStatus()方法中,我们首先获取SharedPreferences对象,并使用edit()方法创建一个编辑器。然后,我们使用putString()方法和putLong()方法分别保存用户名和上一次登录时间。最后,我们使用apply()方法将编辑操作应用到SharedPreferences对象中。

在isLoggedIn()方法中,我们首先获取SharedPreferences对象,并使用getLong()方法获取上一次登录时间。然后,我们计算出距离上一次登录时间是否不足7天,如果不足,则返回true,否则返回false。

在使用时,我们可以在用户登录成功后调用setLoginStatus()方法来设置登录状态,并在需要判断登录状态的地方调用isLoggedIn()方法来判断用户是否处于登录状态。例如:

String username = "user123";  
long lastLoginTime = new Date().getTime();  
LoginManager.setLoginStatus(context, username, lastLoginTime);  
  
if (LoginManager.isLoggedIn(context)) {  
    // 用户处于登录状态,可以继续使用应用  
} else {  
    // 用户不处于登录状态,需要重新登录或者进行其他处理  
}
上一篇下一篇

猜你喜欢

热点阅读