单例双重锁模式SharedPreferences Util 工具类

public class SpUtil {

    private static volatile SpUtil inserter;
    private Context context;
    private static String SPCONFIG = "Config";
    private static SharedPreferences sp;
    private static Editor edit;

    private SpUtil(Context context) {
        this.context = context;
        sp = context.getSharedPreferences(SPCONFIG, Context.MODE_PRIVATE);
        edit = sp.edit();
    }

    public static SpUtil getInserter(Context con) {
        if (inserter == null) {
            synchronized (SpUtil.class) {
                if (null == inserter) {
                    inserter = new SpUtil(con);
                }
            }
        }
        return inserter;
    }

    public  Object getSpData( String key, Object value) {
        String type = value.getClass().getSimpleName();
        if ("Integer".equals(type)) {
            return sp.getInt(key, (Integer) value);
        } else if ("Float".equals(type)) {
            return sp.getFloat(key, (Float) value);
        } else if ("Boolean".equals(type)) {
            return sp.getBoolean(key, (Boolean) value);
        } else if ("Long".equals(type)) {
            return sp.getLong(key, (Long) value);
        } else if ("String".equals(type)) {
            return sp.getString(key, (String) value);
        }
        return null;
    }

    public  Editor saveData( String key, Object value) {
        String type = value.getClass().getSimpleName();
        if ("Integer".equals(type)) {
            return edit.putInt(key, (Integer) value);
        } else if ("Float".equals(type)) {
            return edit.putFloat(key, (Float) value);
        } else if ("Boolean".equals(type)) {
            return edit.putBoolean(key, (Boolean) value);
        } else if ("Long".equals(type)) {
            return edit.putLong(key, (Long) value);
        } else if ("String".equals(type)) {
            return edit.putString(key, (String) value);
        }
        return null;

    }

    public  boolean commit() {
        return edit.commit();
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值