Skip to content

Instantly share code, notes, and snippets.

View tsunhua's full-sized avatar
🌴
On vacation

tsunhua

🌴
On vacation
View GitHub Profile
@tsunhua
tsunhua / Pref.java
Last active September 3, 2018 12:37
Android 使用 SharedPreferences 进行数据缓存
package com.lshare.pref;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
public class Pref {
private static final String PREFIX_PUT_TIME = "ptime_";
private static final String PREFIX_EXPIRED_TIME = "etime_";
private SharedPreferences sp;