zoukankan      html  css  js  c++  java
  • SharedPreferences的简单使用

    package com.example.shishangyuan;

    import android.content.Context;
    import android.content.SharedPreferences;


    //存储类
    public class SharedUtils {
    //存账号的方法
    public static void setName(Context context,String name){
    //SharedPreferences存储类 1.参数 键 2.参数 值
    SharedPreferences sharedPreferences=context.getSharedPreferences("name",0);
    //写入Editor类 定义写入对象
    SharedPreferences.Editor editor=sharedPreferences.edit();
    //1参数 定义的标记 键 2参数 传的值 值
    editor.putString("name",name);
    // 提交
    editor.commit();

    }
    //取的方法
    public static String getName(Context context){
    SharedPreferences sharedPreferences=context.getSharedPreferences("name",0);
    //1参数 存的时候的一个键 2参数 取出来的值 ,默认值为“”; Null和“” 不一样的 “”一个占内存空间,null一个不占内存空间
    return sharedPreferences.getString("name","");
    }
    //存密码
    public static void setPwd(Context context,String pwd){
    //存储类
    SharedPreferences sharedPreferences=context.getSharedPreferences("pwd",0);
    //写入类
    SharedPreferences.Editor editor=sharedPreferences.edit();
    editor.putString("pwd",pwd);
    editor.commit();

    }
    //取的密码方法
    public static String getPwd(Context context){
    SharedPreferences sharedPreferences=context.getSharedPreferences("pwd",0);
    return sharedPreferences.getString("pwd","");
    }
    //返回Userid Token 加密用的 账号的钱 昵称 年龄 性别


    }
  • 相关阅读:
    BZOJ3144 [Hnoi2013]切糕 【最小割】
    BZOJ4196 [Noi2015]软件包管理器 【树剖】
    POJ3422:Kaka's Matrix Travels——题解
    POJ2195:Going Home——题解
    POJ3068:"Shortest" pair of paths——题解
    POJ3686:The Windy's——题解
    POJ2135:Farm Tour——题解
    POJ2987:Firing——题解
    POJ3469:Dual Core CPU——题解
    POJ3281:Dining——题解
  • 原文地址:https://www.cnblogs.com/la66/p/7883476.html
Copyright © 2011-2022 走看看