Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String DEVICE_ID_FILE = "device_file"; private static final String DEVICE_ID_KEY = "device_id"; public static String getDeviceId(Context context) { SharedPreferences mPrefs = context.getSharedPreferences(DEVICE_ID_FILE, Context.MODE_PRIVATE); return mPrefs.getString(DEVICE_ID_KEY, null); } }