Android常用数据存储之SharedPreferences存储和读取用法分享

一:Android常用数据存储,一共有五种方式,分别是
1.SharedPreferences储存数据,
2.文件存储
3.SQLite数据存储
4.ContentProvider储存数据
5.网络存储数据

二:SharedPreferences介绍
1.用于存放一些类似登录的配置信息,保存数据
2.本质上是一个xml文件,通过类似键值对的方式存放信息
3.可以在data/data/包名/shared_prefs,查看保存的内容

三:SharedPreferences操作模式
1.MODE_APPEND:追加方式存储
2.MODE_PRIVATE:私有方式储存,其他应用无法访问
3.MODE_WORLD_READABLE:可被其他应用读取
4.MODE_WORLD_WRITEABLE:可被其他应用写入
四:效果
1.保存效果,在data/data/包名,文件下找到myshare.xml
Android常用数据存储之SharedPreferences存储和读取用法分享_第1张图片
2.打开后,内容如下
Android常用数据存储之SharedPreferences存储和读取用法分享_第2张图片

2.读取效果(记住)
Android常用数据存储之SharedPreferences存储和读取用法分享_第3张图片

五:使用
1.新建ShareActivity代码

package com.hanjie.datastorage_2021_0414;

import android.content.SharedPreferences;

import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

import androidx.appcompat.app.AppCompatActivity;

public class ShareActivity extends AppCompatActivity {

    private EditText accEdt,pwdEdt;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_share);
        accEdt = findViewById(R.id.acc_edt);
        pwdEdt = findViewById(R.id.pwd_edt);
        //读取
        //1.获取SharedPreferences对象(参数1:文件名,参数2:模式)
        SharedPreferences share = getSharedPreferences("myshare",MODE_PRIVATE);
        //2.参数1:是key,参数2:当对应的key不存在时,返回参数2作为默认值
        String accStr = share.getString("account","");
        String pwdStr = share.getString("pwd","");

        accEdt.setText(accStr);
        pwdEdt.setText(pwdStr);

        findViewById(R.id.login_btn).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //1.获取两个输入框的内容
                String account = accEdt.getText().toString();
                String pwd = pwdEdt.getText().toString();
                //2.验证
                if (account.equals("hanjie")&&pwd.equals("hanjie")){
                    //2.1储存信息
                    //1.获取SharedPreferences对象;参数一:存放的文件名,参数二:以什么样的模式
                    SharedPreferences share = getSharedPreferences("myshare",MODE_PRIVATE);
                    //2.获取Editor对象
                    SharedPreferences.Editor edt = share.edit();
                    //3.储存信息
                    edt.putString("account",account);
                    edt.putString("pwd",pwd);
                    //4.指定提交操作
                    edt.apply();//edt.commit();
                    Toast.makeText(ShareActivity.this,"登录成功",Toast.LENGTH_LONG).show();

                }else {
                    //2.2验证失败,提示用户
                    Toast.makeText(ShareActivity.this,"账号密码错误",Toast.LENGTH_LONG).show();
                }
            }
        });
    }
}

2.activity_share代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ShareActivity">

    <TextView
        android:id="@+id/textView7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:text="账号:"
        android:textSize="18sp"
        app:layout_constraintBottom_toTopOf="@+id/guideline3"
        app:layout_constraintEnd_toStartOf="@+id/guideline5" />

    <EditText
        android:id="@+id/acc_edt"
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toTopOf="@+id/guideline3"
        app:layout_constraintStart_toStartOf="@+id/guideline5"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        android:text="密码:"
        android:textSize="18sp"
        app:layout_constraintBottom_toTopOf="@+id/guideline4"
        app:layout_constraintEnd_toStartOf="@+id/guideline5" />

    <EditText
        android:id="@+id/pwd_edt"
        android:layout_width="350dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:inputType="textPassword"
        app:layout_constraintBottom_toTopOf="@+id/guideline4"
        app:layout_constraintStart_toStartOf="@+id/guideline5" />

    <Button
        android:id="@+id/login_btn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="登录"
        app:layout_constraintTop_toTopOf="@+id/guideline4"
        android:layout_margin="15dp" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="93dp" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="179dp" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_begin="88dp" />

</androidx.constraintlayout.widget.ConstraintLayout>

你可能感兴趣的:(python,android,java,安卓,数据库)