Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; public class Main { public static String getPreApn(Context context) { try { SharedPreferences sharedPreferences = context.getSharedPreferences("com.cmmobi.icuiniao.preapn", Activity.MODE_PRIVATE); return sharedPreferences.getString("preapn", "wifi"); } catch (Exception e) { } return "wifi"; } }