当前位置:   article > 正文

android配置文件保存到本地(SP)_android保存文件到本地

android保存文件到本地

权限声明
在这里插入图片描述

<!-- 写入存储权限 -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  • 1
  • 2

xml布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/ll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/save"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="saveToSP"
        android:text="保存到SP"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="getSP"
        android:text="从SP获取"/>
</LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

后端代码

//sp保存
    public void saveToSP(View view) {
        //文件名字,存储模式
        SharedPreferences sp = getSharedPreferences("sp_config", Context.MODE_PRIVATE);
        sp.edit().putString("mykey","aaa").apply();
        sp.edit().putString("mykey1","bbb").apply();
    }

    //从使用sp获取数据
    public void getSP(View view) {
        //从文件获取
        SharedPreferences sp = getSharedPreferences("sp_config", Context.MODE_PRIVATE);
        //获取sp全部数据
        Map<String, ?> all = sp.getAll();
        Log.d(TAG, "获取的全部数据--->: "+all);
        //根据key获取value,如果不存在mykey就直接使用默认值
        String string = sp.getString("mykey", "默认");
        String string1 = sp.getString("mykey2", "默认");
        Log.d(TAG, "string--->mykey(存在)--->: "+string);
        Log.d(TAG, "string1--->mykey2(不存在)--->: "+string1);
        Toast.makeText(this, string, Toast.LENGTH_SHORT).show();
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

在这里插入图片描述
存储的配置问价放在
在这里插入图片描述
下面的data—>data—>和文件目录相同的—>shared_prefs
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/669256
推荐阅读
相关标签