Android中获取手机IMEI,IMSI, MAC(Android 6.0)工具类

1. IMEI

IMEI(International Mobile Equipment Identity)是国际移动设备身份码的缩写,国际移动装备辨识码,是由15位数字组成的"电子串号",它与每台移动电话机一一对应,而且该码是全世界唯一的。每一只移动电话机在组装完成后都将被赋予一个全球唯一的一组号码,这个号码从生产到交付使用都将被制造生产的厂商所记录。

PS:通俗来讲就是标识你当前设备(手机)全世界唯一,类似于个人身份证

2. IMSI

国际移动用户识别码(IMSI:International Mobile Subscriber Identification

Number)是区别移动用户的标志,储存在SIM卡中,可用于区别移动用户的有效信息。其总长度不超过15位,同样使用0~9的数字。其中MCC是移动用户所属国家代号,占3位数字,中国的MCC规定为460;MNC是移动网号码,由两位或者三位数字组成,中国移动的移动网络编码(MNC)为00;用于识别移动用户所归属的移动通信网;MSIN是移动用户识别码,用以识别某一移动通信网中的移动用户

PS:通俗来讲就是标识你当前SIM卡(手机卡)唯一,同样类似于个人身份证

3. MAC

MAC(Media Access Control或者Medium Access Control)地址,意译为媒体访问控制,或称为物理地址、硬件地址,用来定义网络设备的位置。在OSI模型中,第三层网络层负责 IP地址,第二层数据链路层则负责 MAC地址。因此一个主机会有一个MAC地址,而每个网络位置会有一个专属于它的IP地址

PS:通俗来讲就是标识你当前使用我这个软件(功能)时的地址

最主要的是:在平板设备上,无法通过imei标示设备,我们会将mac地址作为用户的唯一标识

下面贴出获取这三项的代码。。。

import android.content.Context;

import android.net.wifi.WifiInfo;

import android.net.wifi.WifiManager;

import android.telephony.TelephonyManager;

/**

* 获取手机信息工具类

* @author zzZ

*/

public class MobileInfoUtil {

/**

* 获取手机IMEI

* @param context

* @return

*/

public static final String getIMEI(Context context) {

try {

//实例化TelephonyManager对象

TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);

//获取IMEI号

String imei = telephonyManager.getDeviceId();

//在次做个验证,也不是什么时候都能获取到的啊

if (imei == null) {

imei = "";

}

return imei;

} catch (Exception e) {

e.printStackTrace();

return "";

}

}

/**

* 获取手机IMSI

*/

public static String getIMSI(Context context){

try {

TelephonyManager telephonyManager=(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);

//获取IMSI号

String imsi=telephonyManager.getSubscriberId();

if(null==imsi){

imsi="";

}

return imsi;

} catch (Exception e) {

e.printStackTrace();

return "";

}

}

}

从Android 6.0之后,android 移除了通过 WiFi 和蓝牙 API 来在应用程序中可编程的访问本地硬件标示符。现在 WifiInfo.getMacAddress() 和 BluetoothAdapter.getAddress() 方法都将返回 02:00:00:00:00:00 。

下获取MAC地址方式,如下:

/**

* 根据手机系统版本获取MAC地址

* @return

*/

public static String getMAC(Context context) {

String str = null, macSerial = null;

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { // 如果当前设备系统大于等于6.0 使用下面的方法

return getHighVersionMac();

} else {

return getLowVersionMac();

}

}

/**

* 获取MAC地址 针对系统版本大于等于Android 6.0

* @return

*/

public static String getHighVersionMac(Context context) {

String str = "";

String macSerial = "";

try {

Process pp = Runtime.getRuntime().exec(

"cat /sys/class/net/wlan0/address ");

InputStreamReader ir = new InputStreamReader(pp.getInputStream());

LineNumberReader input = new LineNumberReader(ir);

for (; null != str; ) {

str = input.readLine();

if (str != null) {

macSerial = str.trim();// 去空格

break;

}

}

} catch (Exception ex) {

ex.printStackTrace();

}

if (macSerial == null || "".equals(macSerial)) {

try {

return loadFileAsString("/sys/class/net/eth0/address")

.toUpperCase().substring(0, 17);

} catch (Exception e) {

e.printStackTrace();

}

}

return macSerial;

}

public static String loadFileAsString(String fileName) throws Exception {

FileReader reader = new FileReader(fileName);

String text = loadReaderAsString(reader);

reader.close();

return text;

}

/**

* 获取MAC地址 针对系统版本小于Android 6.0

* @return

*/

public static String getLowVersionMac(Context context) {

try {

WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);

// 获取MAC地址

WifiInfo wifiInfo = wifiManager.getConnectionInfo();

String mac = wifiInfo.getMacAddress();

if (null == mac) {

// 未获取到

mac = "";

}

return mac;

} catch (Exception e) {

e.printStackTrace();

return "";

}

}

你可能感兴趣的:(Android中获取手机IMEI,IMSI, MAC(Android 6.0)工具类)