这个工具类突出的优点是可以存对象,集合,map等。个人觉得很强大!
package com.example.burro.demo.appframework.util;
import android.content.Context;
import android.content.SharedPreferences;
import android.text.TextUtils;
import android.util.Base64;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* Created by burro on 2017/8/21.
* 偏好存储工具类,可以存集合,对象,map等
*/
public class SharePreferenceUtils {
private static SharedPreferences mInstance;
private static SharedPreferences getInstance(Context context) {
if (mInstance == null) {
mInstance = context.getSharedPreferences("SharePreferenceUtils", Context.MODE_PRIVATE);
}
return mInstance;
}
/**
* 存入字符串
*
* @param context 上下文
* @param key 字符串的键
* @param value 字符串的值
*/
public static void putString(Context context, String key, String value) {
SharedPreferences preferences = getInstance(context);
SharedPreferences.Editor editor = preferences.edit();
editor.putString(key, value);
editor.commit();
}
/**
* 获取字符串
*
* @param context 上下文
* @param key 字符串的键
* @return 得到的字符串
*/
public static String getString(Context context, String key) {
SharedPreferences preferences = getInstance(context);
return preferences.getString(key, "");
}
/**
* 获取字符串
*
* @param context 上下文
* @param key 字符串的键
* @param value 字符串的默认值
* @return 得到的字符串
*/
public static String getString(Context context, String key, String value) {
SharedPreferences preferences = getInstance(context);
return preferences.getString(key, value);
}
/**
* 保存布尔值
*
* @param context 上下文
* @param key 键
* @param value 值
*/
public static void putBoolean(Context context, String key, boolean value) {
SharedPreferences sp = getInstance(context);
SharedPreferences.Editor editor = sp.edit();
editor.putBoolean(key, value);
editor.commit();
}
/**
* 获取布尔值
*
* @param context 上下文
* @param key 键
* @param defValue 默认值
* @return 返回保存的值
*/
public static boolean getBoolean(Context context, String key, boolean defValue) {
SharedPreferences sp = getInstance(context);
return sp.getBoolean(key, defValue);
}
/**
* 保存long值
*
* @param context 上下文
* @param key 键
* @param value 值
*/
public static void putLong(Context context, String key, long value) {
SharedPreferences sp = getInstance(context);
SharedPreferences.Editor editor = sp.edit();
editor.putLong(key, value);
editor.commit();
}
/**
* 获取long值
*
* @param context 上下文
* @param key 键
* @param defValue 默认值
* @return 保存的值
*/
public static long getLong(Context context, String key, long defValue) {
SharedPreferences sp = getInstance(context);
return sp.getLong(key, defValue);
}
/**
* 保存int值
*
* @param context 上下文
* @param key 键
* @param value 值
*/
public static void putInt(Context context, String key, int value) {
SharedPreferences sp = getInstance(context);
SharedPreferences.Editor editor = sp.edit();
editor.putInt(key, value);
editor.commit();
}
/**
* 获取long值
*
* @param context 上下文
* @param key 键
* @param defValue 默认值
* @return 保存的值
*/
public static int getInt(Context context, String key, int defValue) {
SharedPreferences sp = getInstance(context);
return sp.getInt(key, defValue);
}
/**
* 保存对象
*
* @param context 上下文
* @param key 键
* @param obj 要保存的对象(Serializable的子类)
* @param 泛型定义
*/
public static void putObject(Context context, String key, T obj) {
try {
put(context, key, obj);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 获取对象
*
* @param context 上下文
* @param key 键
* @param 指定泛型
* @return 泛型对象
*/
public static T getObject(Context context, String key) {
try {
return (T) get(context, key);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* 存储List集合
*
* @param context 上下文
* @param key 存储的键
* @param list 存储的集合
*/
public static void putList(Context context, String key, List extends Serializable> list) {
try {
put(context, key, list);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 获取List集合
*
* @param context 上下文
* @param key 键
* @param 指定泛型
* @return List集合
*/
public static List getList(Context context, String key) {
try {
return (List) get(context, key);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* 存储Map集合
*
* @param context 上下文
* @param key 键
* @param map 存储的集合
* @param 指定Map的键
* @param 指定Map的值
*/
public static void putMap(Context context,
String key, Map map) {
try {
put(context, key, map);
} catch (Exception e) {
e.printStackTrace();
}
}
public static Map getMap(Context context,
String key) {
try {
return (Map) get(context, key);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* 存储对象
*/
private static void put(Context context, String key, Object obj)
throws IOException {
if (obj == null) {
return;
}
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = null;
oos = new ObjectOutputStream(baos);
oos.writeObject(obj);
String objectStr = new String(Base64.encode(baos.toByteArray(), Base64.DEFAULT));
baos.close();
oos.close();
putString(context, key, objectStr);
}
/**
* 获取对象
*/
private static Object get(Context context, String key)
throws IOException, ClassNotFoundException {
String wordBase64 = getString(context, key);
if (TextUtils.isEmpty(wordBase64)) {
return null;
}
byte[] objBytes = Base64.decode(wordBase64.getBytes(), Base64.DEFAULT);
ByteArrayInputStream bais = new ByteArrayInputStream(objBytes);
ObjectInputStream ois = new ObjectInputStream(bais);
Object obj = ois.readObject();
bais.close();
ois.close();
return obj;
}
}