Android数据存储之SharePreferences的使用总结
Android数据存储之SharePreferences的使⽤总结
SharedPreferences类供开发⼈员保存和获取基本数据类型的键值对.该类主要⽤于基本类型, 例如boolean,float.int,long和string.
SharedPreferences类的数据以xml⽂件⽅式存储在本地
位置://⽂件存放地址 //data/data/包名/shared_pres
在应⽤程序结束后,数据仍旧会保存.只要程序没有被卸载,下次启动程序后还可以访问上次存放的数据。
SharedPreferences对象的创建不是通过new出来的,⽽是getSharedPreferences(String name,int mode)⽅法可以获得,这个⽅法是上下⽂⾥⾯有的静态⽅法,其第⼀个参数就是共享⽂件的名称.第⼆个参数是⽂件数据保存的模式。对于使⽤同⼀个⽂件名称获得的多个SharedPreferences引⽤,其指同⼀个 SharePreferences对象;
⽂件数据保存的模式:
1)MODE_PRIVATE ,这个模式⽤得最多,其他的模式很少⽤
2)MODE_APPEND
3)MODE_WORLD_READABLE
4)MODE_WORLD_WRITEABLE
从SharedPreferences对象中取值时,主要使⽤该类中定义的getXxx()⽅法.⽐如:
String String(“name”);
SharedPreferences类中使⽤的步骤如下:
1)调⽤SharedPreference对象的edit()⽅法获得##SharedPreferences.Editor引⽤对象
2)调⽤诸如putBoolean(),putString()等⽅法增加值.
3)使⽤commit()⽅法提交新值. 存储操作模式有:
SharedPreferences类的应⽤:
1)判断⽤户是否第⼀次登录
2)设置⽤户相关默认设置开关
⽐如默认的声⾳设置,是否要消息推送等等。
3)⽤于设置⽤户的⾃动登录等等
下⾯介绍⼀个模拟可⾃动登录的⽰例程序:
程序功能:
1.验证⽤户名和密码的正确性;这⾥信息都是模拟的.
2.如果勾选记住密码选框,那么⽤户登录成功后,再退出程序,两个输⼊框会显⽰上次登录成功过的⽤户名和密码
3.如果勾选⾃动登录,页⾯启动时会验证⽤户名和密码,然后⾃动登录。
4.如果没有勾选记住密码登录,那么如果之前保存的⽤户名和密码也会被移除掉。下次登录时,⽤户名和密码的输⼊框不会有任何的信息。(⼀)xml布局⽂件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="schemas.android/apk/res/android"
xmlns:tools="schemas.android/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.lwz.sharepreferences.MainActivity">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
1 2 3 4        android:layout_height="wrap_content"
android:hint="⽤户名:">
<EditText
android:id="@+id/main_et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="请输⼊⽤户名" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout        android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="密码:">
<EditText
android:id="@+id/main_et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="密码" />
</android.support.design.widget.TextInputLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<CheckBox
android:id="@+id/main_cb_remember"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="记住密码" />
<CheckBox
android:id="@+id/main_cb_auto"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="⾃动登录" />
</LinearLayout>
<TextView
android:id="@+id/main_tv_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:background="#336699"
android:gravity="center"
android:padding="10dp"
android:text="登录"
android:textColor="@android:color/white" />
</LinearLayout>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
66
67
68
69
上⾯的android.support.design.widget.TextInputLayout,是android中的design包⾥⾯的⼀个定义好布局样式,相对于垂直⽅向的线性布局。这⾥的包要导包,没有的话,还是直接⽤垂直⽅向的线性布局代替就可以了
(⼆)Share Preferences的⼯具类
package com.lwz.sharepreferences;
t.Context;
t.SharedPreferences;
/**
* 这是⼀个SharePreference的根据类,使⽤它可以更⽅便的数据进⾏简单存储
* 这⾥只要知道基本调⽤⽅法就可以了
* 1.通过构造⽅法来传⼊上下⽂和⽂件名
* 2.通过putValue⽅法传⼊⼀个或多个⾃定义的ContentValue对象,进⾏数据存储
* 3.通过get⽅法来获取数据
* 4.通过clear⽅法来清除这个⽂件的数据
* 这⾥没有提供清除单个key的数据,是因为存⼊相同的数据会⾃动覆盖,没有必要去理会
*/
public class SPHelper {
//定义⼀个SharePreference对象
SharedPreferences sharedPreferences;
//定义⼀个上下⽂对象
//创建SharePreference对象时要上下⽂和存储的模式
//通过构造⽅法传⼊⼀个上下⽂
SPHelper(Context context, String fileName) {
//实例化SharePreference对象,使⽤的是get⽅法,⽽不是new创建
//第⼀个参数是⽂件的名字
//第⼆个参数是存储的模式,⼀般都是使⽤私有⽅式:Context.MODE_PRIVATE
sharedPreferences = SharedPreferences(fileName, Context.MODE_PRIVATE);
}
/**
* 存储数据
* 这⾥要对存储的数据进⾏判断在存储
* 只能存储简单的⼏种数据
* 这⾥使⽤的是⾃定义的ContentValue类,来进⾏对多个数据的处理
*/
//创建⼀个内部类使⽤,⾥⾯有key和value这两个值
static class ContentValue {
String key;
Object value;
//通过构造⽅法来传⼊key和value
ContentValue(String key, Object value) {
this.key = key;
this.value = value;
}
}
//⼀次可以传⼊多个ContentValue对象的值
public void contentValues) {
1 2 3 4 5 6 7 8 9 10 11 12 13    public void contentValues) {
//获取SharePreference对象的编辑对象,才能进⾏数据的存储
SharedPreferences.Editor editor = sharedPreferences.edit();
//数据分类和存储
for (ContentValue contentValue : contentValues) {
//如果是字符型类型
if (contentValue.value instanceof String) {
editor.putString(contentValue.key, String())mit();
}
//如果是int类型
if (contentValue.value instanceof Integer) {
editor.putInt(contentValue.key, Integer.parseInt(String()))mit();
}
/
/如果是Long类型
qq用户名if (contentValue.value instanceof Long) {
editor.putLong(contentValue.key, Long.parseLong(String()))mit();
}
//如果是布尔类型
if (contentValue.value instanceof Boolean) {
editor.putBoolean(contentValue.key, Boolean.parseBoolean(String()))mit();            }
}
}
//获取数据的⽅法
public String getString(String key) {
String(key, null);
}
public boolean getBoolean(String key) {
Boolean(key, false);
}
public int getInt(String key) {
Int(key, -1);
}
public long getLong(String key) {
Long(key, -1);
}
/
/清除当前⽂件的所有的数据
public void clear() {
sharedPreferences.edit().clear()mit();
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。