这个问题有很多答案,但是他们中的大部分只在某些情况下有效。
根据测试:
TelephonyManager.getDeviceId()
TelephonyManager.getSimSerialNumber()
getSimSerialNumber()
却返回一个空值!ANDROID_ID
ANDROID_ID
和 TelephonyManager.getDeviceId()
返回相同的值(只要在设置时添加了谷歌账户) 所以如果你想得到设备的唯一序号, TelephonyManager.getDeviceId()
就足够了。但很明显暴露了DeviceID会使一些用户不满,所以最好把这些id加密了。实际上加密后的序号仍然可以唯一的识别该设备,并且不会明显的暴露用户的特定设备,例如,使用 String.hashCode() ,结合UUID:
1
2
3
4
5
6
7
8
9
|
final
TelephonyManager tm = (TelephonyManager) getBaseContext().getSystemService(Context.TELEPHONY_SERVICE);
final
String tmDevice, tmSerial, tmPhone, androidId;
tmDevice =
""
+ tm.getDeviceId();
tmSerial =
""
+ tm.getSimSerialNumber();
androidId =
""
+ android.provider.Settings.Secure.getString(getContentResolver(), android.provider.Settings.Secure.ANDROID_ID);
UUID deviceUuid =
new
UUID(androidId.hashCode(), ((
long
)tmDevice.hashCode() <<
32
) | tmSerial.hashCode());
String uniqueId = deviceUuid.toString();
|
最后的deviceID可能是这样的结果: 00000000-54b3-e7c7-0000-000046bffd97
---------------------------------------------------------------------------------------------------------------------------------------------------------------
最近一直在搞注册的问题,想要获得android的一个唯一标识,但是各种方法都有弊病,先详细分析一下:
1. DEVICE_ID
假设我们确实需要用到真实设备的标识,可能就需要用到DEVICE_ID。在以前,我们的Android设备是手机,这个DEVICE_ID可以同通过TelephonyManager.getDeviceId()获取,它根据不同的手机设备返回IMEI,MEID或者ESN码,但它在使用的过程中会遇到很多问题:
2. MAC 地址
我们也可以通过手机的Wifi或者蓝牙设备获取MAC ADDRESS作为DEVICE ID,但是并不建议这么做,因为并不是所有的设备都有Wifi,并且,如果Wifi没有打开,那硬件设备无法返回MAC地址,这里所说的wifi没有打开是指开机后wifi一直没有打开,若打开过一次就能得到mac地址,附上打开wifi的代码:
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
if (!wifi.isWifiEnabled()) {
wifi.setWifiEnabled(true);
}
这里需要添加允许打开wifi的权限:<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
3. Serial Number
在Android 2.3可以通过android.os.Build.SERIAL获取,非手机设备可以通过该接口获取。
4. ANDROID_ID
ANDROID_ID是设备第一次启动时产生和存储的64bit的一个数,当设备被wipe后该数重置
ANDROID_ID似乎是获取Device ID的一个好选择,但它也有缺陷:
5.手机卡的信息(IMSI)
如果你想得到手机的手机号,目前来看还有一定的难度,主要是有的卡的信息是放在服务提供商的服务器上,但是不要着急,我们能够得到手机卡的唯一标识:
TelephonyManager tm=(TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
tm.getSubscriberId();//IMSI
现在主要问题是有些手机的mac地址会变,这个不受程序控制,每开关一个wifi,mac地址都会变一次(不过大部分的是不变的),android手机各种各样,要考虑全部的肯定是考虑不过来,所以推荐使用手机卡的IMSI。
现在我也没有找到最优的,欢迎大家交流!
可不可以在手机端放一个uuid作为唯一标识,因为你说的哪些可能都或多或少有点问题,不能真正作为唯一标识。
以上四种方式都有或多或少存在的一定的局限性或者bug,在这里,有另外一种方式解决,就是使用UUID,该方法无需访问设备的资源,也跟设备类型无关。
这种方式是通过在程序安装后第一次运行后生成一个ID实现的,但该方式跟设备唯一标识不一样,它会因为不同的应用程序而产生不同的ID,而不是设备唯一ID。因此经常用来标识在某个应用中的唯一ID(即Installtion ID),或者跟踪应用的安装数量。很幸运的,Google Developer Blog提供了这样的一个框架:
public class Installation {
private static String sID = null;
private static final String INSTALLATION = "INSTALLATION";
public synchronized static String id(Context context) {
if (sID == null) {
File installation = new File(context.getFilesDir(), INSTALLATION);
try {
if (!installation.exists())
writeInstallationFile(installation);
sID = readInstallationFile(installation);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
return sID;
}
private static String readInstallationFile(File installation) throws IOException {
RandomAccessFile f = new RandomAccessFile(installation, "r");
byte[] bytes = new byte[(int) f.length()];
f.readFully(bytes);
f.close();
return new String(bytes);
}
private static void writeInstallationFile(File installation) throws IOException {
FileOutputStream out = new FileOutputStream(installation);
String id = UUID.randomUUID().toString();
out.write(id.getBytes());
out.close();
}
}