Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { /** * * @param context * @param key * @return */ public static String getString(Context context, String key) { SharedPreferences sharedPreferences = context.getSharedPreferences("7Yan", Context.MODE_PRIVATE); return sharedPreferences.getString(key, ""); } }