SharedPreferences(共享参数)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharedPreferences(共享参数)相关的知识,希望对你有一定的参考价值。

//共享参数,多用于自动登录,是 android常用的数据储存的一种,用于储存少量数据,Integer,Double,String等。

public class sharp {
    Context context;                 //接收上下文对象

    public sharp(Context context) { //构造函数
        this.context = context;
    }
//存储数据
    public void read(User user){
        SharedPreferences pre=context.getSharedPreferences("pp",Context.MODE_PRIVATE);          //“pp”为共享文件名
        SharedPreferences.Editor editor=pre.edit();//创建Editor
        editor.putString("id",user.getId());        //把用户名刺入到共享文件里
        editor.putString("pwd",user.getPwd());
        editor.putString("qx",user.getQx());
        editor.commit();
    }
//读取数据
public User write(){ SharedPreferences shp=context.getSharedPreferences("pp",Context.MODE_PRIVATE); String id=shp.getString("name","no");//“no”为默认值 String pwd=shp.getString("pwd","no"); String qx=shp.getString("qx","no"); User user=new User(id,pwd,qx); return user; } }

 

以上是关于SharedPreferences(共享参数)的主要内容,如果未能解决你的问题,请参考以下文章

跨进程共享 SharedPreferences

跨进程共享 SharedPreferences

如何在两个不同的 Android 应用程序之间共享 SharedPreferences 文件?

android进程间共享简单数据

Android-SharedPreferences

SharedPreferences 和数据库:在本机代码中还是在 Flutter 中?