Android SharedPreferences存储用法详解
作者:段炼Android 发布时间:2023-08-07 08:25:34
先看Demo运行效果
SharedPreferences详解
SharedPreferences是Android平台上一个轻量级的存储类,用来保存应用的一些常用配置,比如Activity状态,Activity暂停时,将此activity的状态保存到SharedPereferences中;当Activity重载,系统回调方法onSaveInstanceState时,再从SharedPreferences中将值取出.
SharedPreferences提供了java常规的Long、Int、String等类型数据的保存接口.
SharedPreferences类似过去Windows系统上的ini配置文件,但是它分为多种权限,可以全局共享访问。
提示最终是以xml方式来保存,整体效率来看不是特别的高,对于常规的轻量级而言比SQLite要好不少,如果真的存储量不大可以考虑自己定义文件格式。xml处理时Dalvik会通过自带底层的本地XML Parser解析,比如XMLpull方式,这样对于内存资源占用比较好.
SharedPreferences数据的四种操作模式
Context.MODE_PRIVATE
Context.MODE_APPEND
Context.MODE_WORLD_READABLE
Context.MODE_WORLD_WRITEABLE
Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容
Context.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件.
Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE用来控制其他应用是否有权限读写该文件.
MODE_WORLD_READABLE:表示当前文件可以被其他应用读取.
MODE_WORLD_WRITEABLE:表示当前文件可以被其他应用写入
SharedPreferences使用步骤
SharedPreferences的使用非常简单,使用SharedPreferences保存key-value对的步骤如下:
(1)使用Activity类的getSharedPreferences方法获得SharedPreferences对象,其中存储key-value的文件的名称由getSharedPreferences方法的第一个参数指定.
(2)使用SharedPreferences接口的edit获得SharedPreferences.Editor对象.
(3)通过SharedPreferences.Editor接口的putXxx方法保存key-value对。其中Xxx表示不同的数据类型。例如:字符串类型的value需要用putString方法.
(4)通过SharedPreferences.Editor接口的commit方法保存key-value对。commit方法相当于数据库事务中的提交(commit)操作.
具体代码的书写流程为:
A、存放数据信息
1、打开Preferences,名称为config,如果存在则打开它,否则创建新的Preferences
SharedPreferencesconfig= getSharedPreferences(“config”, 0);
2、让config处于编辑状态
SharedPreferences.Editor editor =config.edit();
3、存放数据
editor.putString(“name”,”ATAAW”);
editor.putString(“URL”,”ATAAW.COM”);
4、完成提交
editor.commit();
B、读取数据信息
1、获取Preferences
SharedPreferencesconfig= getSharedPreferences(“config”, 0);
2、取出数据
String name =config.getString(“name”,”默认值”);
String url = config.getString(“URL”,”default”);
以上就是Android中SharedPreferences的使用方法
demo的实现
MainActivity布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.duanlian.sharedpreferencesdemo.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="用户名"
android:textSize="23sp" />
<EditText
android:id="@+id/username"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="密 码"
android:textSize="23sp" />
<EditText
android:id="@+id/password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<Button
android:onClick="save"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="保存信息"/>
<Button
android:onClick="change"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="跳转"/>
</LinearLayout>
ActivityA的布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.duanlian.sharedpreferencesdemo.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="用户名"
android:textSize="23sp" />
<EditText
android:id="@+id/username"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="密 码"
android:textSize="23sp" />
<EditText
android:id="@+id/password"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<Button
android:onClick="get"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="得到信息"/>
</LinearLayout>
MainActivity里存储的具体实现
都是按照上面写的步骤来实现的,最后一定要提交
package com.duanlian.sharedpreferencesdemo;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
public class MainActivity extends AppCompatActivity {
private EditText passWors;
private EditText userName;
private SharedPreferences preferences;
private SharedPreferences.Editor editor;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
userName = (EditText) findViewById(R.id.username);
passWors = (EditText) findViewById(R.id.password);
//1,实例化SharedPreferences对象,参数1:保存的名字,参数2:保存的模式MODE_PRIVATE私有的
preferences = getSharedPreferences("config", MODE_PRIVATE);
//2,让SharedPreferences处于可编辑状态
editor = preferences.edit();
}
/**
* 保存按钮的监听
* @param view
*/
public void save(View view) {
//拿到用户输入的数据
String name = userName.getText().toString().trim();
String pwd = passWors.getText().toString().trim();
//3,储存数据,类似于map
editor.putString("name", name);
editor.putString("pwd", pwd);
//4,提交
editor.commit();
}
/**
* 跳转的点击监听
* @param view
*/
public void change(View view) {
Intent intent = new Intent(MainActivity.this, ActivityA.class);
startActivity(intent);
}
}
取出数据的实现
package com.duanlian.sharedpreferencesdemo;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
public class ActivityA extends AppCompatActivity {
private EditText userName;
private EditText passWord;
private String name;
private String pwd;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_a);
//得到数据
//1,得到SharedPreferences对象
SharedPreferences preferences = getSharedPreferences("config", 0);
//2,取出数据
name = preferences.getString("name","");
pwd = preferences.getString("pwd", "");
userName = (EditText) findViewById(R.id.username);
passWord = (EditText) findViewById(R.id.password);
}
/**
* 得到数据按钮的监听
* @param view
*/
public void get(View view) {
userName.setText(name);
passWord.setText(pwd);
}
}


猜你喜欢
- CountDownLatch简介CountDownLatch顾名思义,count + down + latch = 计数 + 减 + 门闩(
- 一、File类1、简介java.io.File类:文件和文件目录路径的抽象表示形式,与平台无关 File 能新建、删除、重命名文件和目录,但
- 一、No serializer found for class org.hibernate.proxy.pojo.bytebuddy.Byt
- Java java.lang.ExceptionInInitializerError 错误如何解决引起 Java.lang.Ex
- Java实现按行读取大文件String file = "F:" + File.separator + "a.t
- 问题描述:服务器接收后台返回的报文时,提示java.lang.NegativeArraySizeException分析:这种异常返回的原因,
- 前言在Activity间传递的数据一般比较简单,但是有时候实际开发中也会传一些比较复杂的数据,本节一起来学习更多Activity间数据的传递
- 开发过程中会遇见很多app注册时,需要通过手机发送验证码验证 ,这是可以封装一个验证码按钮:attrs.xml<?xml versio
- 两个对象进行比较相等,有两种做法:1、情况一:当仅仅只是判断两个对象是否相等时,只需重写equals()方法即可。这里就不用说明2、情况二:
- web.xml中设置:<servlet> <servlet-name>DisplayChart</servle
- 本文实例为大家分享了openoffice+jodconverter-code-3.0-bate4实现ppt转图片的具体代码,供大家参考,具体
- 学习Demo contains方法:用于判断list集合是否包含某个元素containsKey方法:用于判断Map键中是否包含某个
- SelectMany操作符提供了将多个from子句组合起来的功能,相当于数据库中的多表连接查询,它将每个对象的结果合并成单个序列。示例:st
- 本文实例讲述了Android实现内存中数据保存到sdcard的方法。分享给大家供大家参考,具体如下:public static void w
- mongodb的数据插入速度是其一个亮点,同样的10000条数据,插入的速度要比Mysql和sqlserver都要快,当然这也是要看使用者怎
- 全面解析java注解Java中的常见注解 a.JDK中的注解 @Override 覆盖父类或者父接口的方
- 说明:此头像类似微信群组头像,整个头像由组内前N位人员的头像组合而成,可用网络或本地图片进行组合,最终显示为一个头像整体,看效果图:一、自定
- RecyclerView 滑动时的优化处理,在滑动时停止加载图片,在滑动停止时开始加载图片,这里用了Glide.pause 和Glide.r
- 背景:在安卓开发时,我们时常会因为gradle时间漫长感到烦恼。通常情况下我们会在build.gradle(Project:MyApplic
- 目录1、前言2、实例1、前言法存取数据。除此之外,还可以控制数据的存取方式。在面向对象编程中,大多数都是以类作为数据封装的基本单位。类将数据