SharePreferenes工具类的封装

本文介绍了一个用于操作Android SharedPreferences的实用工具类SharePreferenceUtils。该工具类提供了字符串、整型、布尔值的存取方法,以及删除特定键值和清空所有数据的功能。通过使用这个工具类,开发者可以更方便地在应用程序中保存和读取用户设置或其他轻量级数据。
摘要由CSDN通过智能技术生成
 public class SharePreferenceUtils {
        private  static final String SHARE_FILE_NAME ="Meet";
        public static void putString(Context context,String key,String value){
            SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
            editor.putString(key,value);
            editor.commit();    }

        public static String getString(Context context,String key,String defaultValue){
            return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getString(key,defaultValue);
        }


        public static void putInt(Context context,String key,int value){
            SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
            editor.putInt(key,value);
            editor.commit();    }

        public static int getInt(Context context, String key, int defaultValue){
            return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getInt(key,defaultValue);
        }


        public static void putBoolean(Context context,String key,boolean value){
            SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
            editor.putBoolean(key,value);
            editor.commit();
        }

        public static boolean getBoolean(Context context,String key,boolean defaultValue){
            return context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).getBoolean(key,defaultValue);
        }

        public static void deleSahre(Context context,String key){
            SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
            editor.remove(key);
            editor.commit();
        }

        public  static void clearAll(Context context){
            SharedPreferences.Editor editor=context.getSharedPreferences(SHARE_FILE_NAME,Context.MODE_PRIVATE).edit();
            editor.clear();
            editor.commit();
        }
    }




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值