public class SharedPreferencesUtils { public static void put(String key ,String value,Context context){ SharedPreferences sp = initSharedPreferences(context); SharedPreferences.Editor editor = sp.edit(); editor.putString(key, String.valueOf(value)); editor.commit(); } public static String get(String value,Context context){ SharedPreferences sp = initSharedPreferences(context); String result = sp.getString(value, ""); return result; } public static SharedPreferences initSharedPreferences(Context context){ return context.getSharedPreferences("LOLLOOK", Context.MODE_PRIVATE); } }
浙公网安备 33010602011771号