摘要:1、使用TelephonyManager提供的方法,核心代码:TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE);String imei = tm.getDeviceId(); //取出IMEILog.d(TAG, "IMEI:"+imei);String tel = tm.getLine1Number(); //取出MSISDN,很可能为空Log.d(TAG, "MSISDN:"+tel);String iccid =tm.getSimSer
阅读全文