Android中获取IMEI码的办法
发布时间:2015-06-05 来源:查字典编辑
摘要://getIMEI码StringIMEI=this.getSystemService(Context.TELEPHONY_SERVICE)....
//get IMEI码
String IMEI = this.getSystemService(Context.TELEPHONY_SERVICE).getDeviceId();
String myIMSI =android.os.SystemProperties.get(android.telephony.TelephonyProperties.PROPERTY_IMSI);
//打印
System.out.println("IMEI:" + IMEI);
修改Manifest.xml中权限: