SharedPreferences工具类
发布时间:2020-12-15 00:28:19 所属栏目:Java 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 import java.util.Map;import java.util.Set; import android.content.Context;import android.content.SharedPreferences;import android.content.Sh
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 import java.util.Map; import java.util.Set; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; /** * SharedPreferences工具类 * @author zouyb * */ public class SharedPreferencesUtil { private SharedPreferences sp; private Editor editor; private String name = "mosjoy_chat"; private int mode = Context.MODE_PRIVATE; public SharedPreferencesUtil(Context context) { this.sp = context.getSharedPreferences(name,mode); this.editor = sp.edit(); } /** * 创建一个工具类,默认打开名字为name的SharedPreferences实例 * @param context * @param name 唯一标识 * @param mode 权限标识 */ public SharedPreferencesUtil(Context context,String name,int mode) { this.sp = context.getSharedPreferences(name,mode); this.editor = sp.edit(); } /** * 添加信息到SharedPreferences * * @param name * @param map * @throws Exception */ public void add(Map<String,String> map) { Set<String> set = map.keySet(); for (String key : set) { editor.putString(key,map.get(key)); } editor.commit(); } /** * 删除信息 * * @throws Exception */ public void deleteAll() throws Exception { editor.clear(); editor.commit(); } /** * 删除一条信息 */ public void delete(String key){ editor.remove(key); editor.commit(); } /** * 获取信息 * * @param key * @return * @throws Exception */ public String get(String key){ if (sp != null) { return sp.getString(key,""); } return ""; } /** * 获取此SharedPreferences的Editor实例 * @return */ public Editor getEditor() { return editor; } } 以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |