SpUtil

package com.example.someutil.util;

import android.content.Context;
import android.content.SharedPreferences;
import android.text.TextUtils;

import com.example.someutil.App;

public class SpUtil {
    private static String sp_name = "sp_name";
    private static int sp_mode = Context.MODE_PRIVATE;
    private static Context context = App.context;

public static boolean put(String key,Object value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    SharedPreferences.Editor edit = sp.edit();
    if(value instanceof String){
        if(!TextUtils.isEmpty((CharSequence) value)){
            edit.putString(key, (String) value);
        }
    }else if (value instanceof Boolean){
        edit.putBoolean(key, (Boolean) value);
    }else if (value instanceof Integer){
        edit.putInt(key, (Integer) value);
    }else if (value instanceof Long){
        edit.putLong(key, (Long) value);
    }else{
        edit.putFloat(key, (Float) value);
    }
    boolean commit = edit.commit();
    return commit;
}
public static String getString(String key,String value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    return sp.getString(key,value);
}
public static Boolean getBoolean(String key, Boolean value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    return sp.getBoolean(key,value);
}
public static int getInt(String key,int value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    return sp.getInt(key,value);
}
public static long getLong(String key,long value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    return sp.getLong(key,value);
}
public static float getFloat (String key,Float value){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    return sp.getFloat(key,value);
}
public static void remove(String key){
    SharedPreferences sp = context.getSharedPreferences(sp_name, sp_mode);
    SharedPreferences.Editor edit = sp.edit();
    edit.remove(key);
    edit.commit();
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值