SharedPreferences简单存储/读取

存储过程

//创建SharedPreferences.Editor 对象 editor 
SharedPreferences.Editor editor = getSharedPreferences("keeping",MODE_PRIVATE).edit();
//存储key为username的张三
editor.putString("username","张三");
//存储key为userpassword的123456
editor.putString("password","123456");
//提交以后就存储成功了
editor.commit();

读取过程

//创建SharedPreferences 对象 sp
SharedPreferences sp = getSharedPreferences("keeping",MODE_PRIVATE);
//把读取到的数据赋值给result  第一个参数为读取的key 第二个参数为默认值(数据为空)
String result = sp.getString("username","");

本人初学,欢迎大神多多指点
谢谢大家

你可能感兴趣的:(Android,android,studio,android)