/app/src/main/java/com/redenvelope/utils/SPUtils.java

https://gitlab.com/yubaokang/RedEnvelope · Java · 141 lines · 98 code · 16 blank · 27 comment · 22 complexity · 9d3c241ba7529f7f1eed8de027d8a947 MD5 · raw file

  1. package com.redenvelope.utils;
  2. import android.content.Context;
  3. import android.content.SharedPreferences;
  4. import com.alibaba.fastjson.JSON;
  5. import java.lang.reflect.Field;
  6. import java.util.Iterator;
  7. import java.util.Map;
  8. /**
  9. * Created by hank on 2015/7/8.
  10. */
  11. public class SPUtils {
  12. /**
  13. * 保存在手机里面的文件名
  14. */
  15. private static final String FILE_NAME = "redbox";
  16. /**
  17. * 保存数据的方法,我们需要拿到保存数据的具体类型,然后根据类型调用不同的保存方法
  18. *
  19. * @param context
  20. * @param key
  21. * @param object
  22. */
  23. public static void setParam(Context context, String key, Object object) {
  24. String type = null;
  25. try {
  26. type = object.getClass().getSimpleName();
  27. } catch (Exception e) {
  28. e.printStackTrace();
  29. }
  30. SharedPreferences sp = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE);
  31. SharedPreferences.Editor editor = sp.edit();
  32. if ("String".equals(type)) {
  33. editor.putString(key, (String) object);
  34. } else if ("Integer".equals(type)) {
  35. editor.putInt(key, (Integer) object);
  36. } else if ("Boolean".equals(type)) {
  37. editor.putBoolean(key, (Boolean) object);
  38. } else if ("Float".equals(type)) {
  39. editor.putFloat(key, (Float) object);
  40. } else if ("Long".equals(type)) {
  41. editor.putLong(key, (Long) object);
  42. }
  43. editor.apply();
  44. }
  45. /**
  46. * 得到保存数据的方法,我们根据默认值得到保存的数据的具体类型,然后调用相对于的方法获取值
  47. *
  48. * @param context
  49. * @param key
  50. * @param defaultObject
  51. * @return
  52. */
  53. public static Object getParam(Context context, String key, Object defaultObject) {
  54. String type = null;
  55. try {
  56. type = defaultObject.getClass().getSimpleName();
  57. } catch (Exception e) {
  58. e.printStackTrace();
  59. }
  60. SharedPreferences sp = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE);
  61. Object object = null;
  62. if ("String".equals(type)) {
  63. object = sp.getString(key, (String) defaultObject);
  64. } else if ("Integer".equals(type)) {
  65. object = sp.getInt(key, (Integer) defaultObject);
  66. } else if ("Boolean".equals(type)) {
  67. object = sp.getBoolean(key, (Boolean) defaultObject);
  68. } else if ("Float".equals(type)) {
  69. object = sp.getFloat(key, (Float) defaultObject);
  70. } else if ("Long".equals(type)) {
  71. object = sp.getLong(key, (Long) defaultObject);
  72. }
  73. return object;
  74. }
  75. public void saveObject(Object object) {
  76. }
  77. public static boolean isContain(Context context, String key) {
  78. SharedPreferences sp = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE);
  79. if (sp.contains(key)) {
  80. return true;
  81. }
  82. return false;
  83. }
  84. public static void saveObjectToJson(Context context, String key, Object object) {
  85. String json = JSON.toJSONString(object);
  86. setParam(context, key, json);
  87. }
  88. public static Object getObject(Context context, String key, Class clz) {
  89. String json = getParam(context, key, "").toString();
  90. if (!json.isEmpty()) {
  91. return JsonUtil.getObj(json, clz);
  92. }
  93. return null;
  94. }
  95. /**
  96. * 将对象转换,保存
  97. *
  98. * @param context
  99. * @param object
  100. */
  101. public static void saveObject(Context context, Object object) {
  102. String json = JSON.toJSONString(object);
  103. Map<String, String> map = JsonUtil.getMapStr(json);
  104. Iterator it = map.entrySet().iterator();
  105. while (it.hasNext()) {
  106. Map.Entry entry = (Map.Entry) it.next();
  107. Object key = entry.getKey();
  108. Object value = entry.getValue();
  109. setParam(context, key.toString(), value);
  110. }
  111. }
  112. public static void removeObject(Context context, Class clz) {
  113. Field[] fields = clz.getDeclaredFields();
  114. SharedPreferences sp = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE);
  115. SharedPreferences.Editor editor = sp.edit();
  116. for (Field field : fields) {
  117. editor.remove(field.getName());
  118. }
  119. editor.apply();
  120. }
  121. public static void remove(Context context, String key) {
  122. SharedPreferences sp = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE);
  123. sp.edit().remove(key).apply();
  124. }
  125. }