关于SharedPreferences简单工具类----(1)

时间:2020-12-27 05:35:43

SharedPreferences,一个Android轻量级的存储类,适合存储配置信息。直接上工具类代码了。

/**
* SharedPreferences的工具类
*
* @author 章冰
*
*/

public class PrefUtils {

private static SharedPreferences sp;
//单例
public static SharedPreferences getSp(Context ctx) {

if (sp == null) {
sp = ctx.getSharedPreferences("config", ctx.MODE_PRIVATE);

}
return sp;

}

/**
* 把String类型的数据存到SP中
*/

public static void putString(Context ctx, String key, String value) {

getSp(ctx).edit().putString(key, value).commit();
}

/**
* 从sp中获取String类型的数据
*/

public static String getString(Context ctx, String key, String defValue) {

return getSp(ctx).getString(key, defValue);
}

/**
* 把int类型的数据存到SP中
*/

public static void putInt(Context ctx, String key, int value) {

getSp(ctx).edit().putInt(key, value).commit();
}

/**
* 从sp中获取int类型的数据
*/

public static int getint(Context ctx, String key, int defValue) {

return getSp(ctx).getInt(key, defValue);
}

/**
* 把boolean类型的数据存到SP中
*/

public static void putBoolean(Context ctx, String key, boolean value) {

getSp(ctx).edit().putBoolean(key, value).commit();
}

/**
* 从sp中获取boolean类型的数据
*/

public static boolean getBoolean(Context ctx, String key, boolean defValue) {

return getSp(ctx).getBoolean(key, defValue);
}

/**
* 移除SP中的内容
*/

public static void remove(Context ctx, String key) {

getSp(ctx).edit().remove(key).commit();

}
}

相关文章