Android examples for Phone:wifi
get IMSI
//package com.java2s; import android.content.Context; import android.telephony.TelephonyManager; public class Main { public static String getIMSI(Context paramContext) { return ((TelephonyManager) paramContext.getSystemService("phone")) .getSubscriberId();//from w w w.j a v a 2 s . com } }