Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String PREFS_CACHE_ONE = "prefs_cache_one"; public static long getDownloadSuccessTime(Context context) { SharedPreferences sp = context.getSharedPreferences(PREFS_CACHE_ONE, 0); return sp.getLong("downloadSuccessTime", 0); } }