SPUtil-工具类 是专门对 Android共享首选项 SharedPreferences 的数据保存/数据获取,提供了公共的方法行为;

package common.library.utils;

import android.content.Context;
import android.content.SharedPreferences; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.util.Map; /**
* @Author Liudeli
* @Describe:
*/
public class SPUtil { /**
* 保存在手机里面的文件名
*/
// public static final String FILE_NAME = "share_data"; /**
* 保存数据的方法,我们需要拿到保存数据的具体类型,然后根据类型调用不同的保存方法
*/
/*public static void put(Context context, String key, Object object) {
put(context, FILE_NAME, key, object);
}*/ public static void put(Context context, String spFileName, String key, Object object) {
SharedPreferences sp = context.getSharedPreferences(spFileName,
Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit(); if (object instanceof String) {
editor.putString(key, (String) object);
} else if (object instanceof Integer) {
editor.putInt(key, (Integer) object);
} else if (object instanceof Boolean) {
editor.putBoolean(key, (Boolean) object);
} else if (object instanceof Float) {
editor.putFloat(key, (Float) object);
} else if (object instanceof Long) {
editor.putLong(key, (Long) object);
} else {
editor.putString(key, object.toString());
} SharedPreferencesCompat.apply(editor);
} public static void putString(Context context, String spFileName, String key, String stringData) {
SharedPreferences sp = context.getSharedPreferences(spFileName,
Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putString(key, stringData);
editor.commit();
// SharedPreferencesCompat.apply(editor);
} /**
* 得到保存数据的方法,我们根据默认值得到保存的数据的具体类型,然后调用相对于的方法获取值
*/
/*public static Object get(Context context, String key, Object defaultObject) {
return get(context, FILE_NAME, key, defaultObject);
}*/ public static Object get(Context context, String spName, String key, Object defaultObject) {
SharedPreferences sp = context.getSharedPreferences(spName,
Context.MODE_PRIVATE); if (defaultObject instanceof String) {
return sp.getString(key, (String) defaultObject);
} else if (defaultObject instanceof Integer) {
return sp.getInt(key, (Integer) defaultObject);
} else if (defaultObject instanceof Boolean) {
return sp.getBoolean(key, (Boolean) defaultObject);
} else if (defaultObject instanceof Float) {
return sp.getFloat(key, (Float) defaultObject);
} else if (defaultObject instanceof Long) {
return sp.getLong(key, (Long) defaultObject);
} return null;
} public static String getString(Context context, String spName, String key, String stringDataDefault) {
SharedPreferences sp = context.getSharedPreferences(spName,
Context.MODE_PRIVATE);
return sp.getString(key, stringDataDefault);
} /**
* 移除某个key值已经对应的值
*/
/*public static void remove(Context context, String key) {
remove(context, FILE_NAME, key);
}*/ public static void remove(Context context, String spFileName, String key) {
SharedPreferences sp = context.getSharedPreferences(spFileName,
Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.remove(key);
SharedPreferencesCompat.apply(editor);
} /**
* 清除所有数据
*/
/*public static void clear(Context context) {
clear(context, FILE_NAME);
}*/ public static void clear(Context context, String spFileName) {
SharedPreferences sp = context.getSharedPreferences(spFileName, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.clear();
SharedPreferencesCompat.apply(editor);
} /**
* 查询某个key是否已经存在
*/
/*public static boolean contains(Context context, String key) {
return contains(context, FILE_NAME, key);
}*/ public static boolean contains(Context context, String spFileName, String key) {
SharedPreferences sp = context.getSharedPreferences(spFileName, Context.MODE_PRIVATE);
return sp.contains(key);
} /**
* 返回所有的键值对
*/
/*public static Map<String, ?> getAll(Context context) {
return getAll(context, FILE_NAME);
}*/ public static Map<String, ?> getAll(Context context, String spName) {
SharedPreferences sp = context.getSharedPreferences(spName,
Context.MODE_PRIVATE);
return sp.getAll();
} /**
* 创建一个解决SharedPreferencesCompat.apply方法的一个兼容类
*/
private static class SharedPreferencesCompat {
private static final Method sApplyMethod = findApplyMethod(); /**
* 反射查找apply的方法
*/
@SuppressWarnings({"unchecked", "rawtypes"})
private static Method findApplyMethod() {
try {
Class clz = SharedPreferences.Editor.class;
return clz.getMethod("apply");
} catch (NoSuchMethodException e) {
} return null;
} /**
* 如果找到则使用apply执行,否则使用commit
*/
public static void apply(SharedPreferences.Editor editor) {
try {
if (sApplyMethod != null) {
sApplyMethod.invoke(editor);
return;
}
} catch (IllegalArgumentException e) {
} catch (IllegalAccessException e) {
} catch (InvocationTargetException e) {
}
editor.commit();
}
} public static void main(String args[]) { // BigDecimal bigDecimal = 11111111112.46; BigDecimal b1 = new BigDecimal(Double.toString(11111111112.46)); System.out.println(new BigDecimal(11111111112.46));
System.out.println(new BigDecimal("11111111112.46")); System.out.println(b1.toString());
}
}

最新文章

  1. 分布式搜索引擎Elasticsearch性能优化与配置
  2. 用VBox虚拟机安装Android 屏幕90度翻转竖屏设置
  3. python字典访问的三种方法
  4. BlueDream.js(蓝梦)——jQuery网站使用引导插件
  5. SpringMVC文件上传实现
  6. WinStore控件之TextBox
  7. Messenger 弹窗的使用
  8. wpf 创建动画三种方式
  9. 一个基于MINA框架应用的最简单例子
  10. SnappyDB—Android上的NoSQL数据库简介
  11. php内核一 一次请求与结束
  12. hibernate Annotation 以及注解版的数据关联 4.4
  13. JS创建 trim() 方法,此方法在IE7、IE8中不存在 需要自定义
  14. PostgreSQL存储过程(3)-流程控制语句
  15. eclipse设置新建jsp默认编码格式utf-8
  16. odoo之页面跳转
  17. 【AtCoder010】A - Addition(奇偶)
  18. 对于移动端 App,虚拟机注册或类似作弊行为有何应对良策?
  19. learn python the hard way 习题6~10总结
  20. 深入理解java虚拟机---对象的访问定位(十)

热门文章

  1. 增加路由ip
  2. ECMAScript5新特性之isSealed、seal
  3. mac常用软件
  4. sign和token设计
  5. boost x64 lib
  6. Mac 终端使用 - 加密 1. MD5 2.Base64
  7. Halcon的二维码解码步骤和解码技巧
  8. maven的pom.xml样例
  9. UNIX和类UNIX操作系统
  10. linux两个线程