2

如何在 Android 中获得唯一的Deviceid?适用于智能手机和平板电脑。据我了解,这可能不是唯一的?

这段代码会起作用吗? http://android-developers.blogspot.com/2011/03/identifying-app-installations.html

4

3 回答 3

2

这是获取也适用于平板电脑的设备 ID 的简单方法

public class DeviceHelper {

private static String sID = null;
private static final String INSTALLATION = "INSTALLATION";

public synchronized static String getDeviceId(final Context context) {
    if (sID == null) {
        File installation = new File(context.getFilesDir(), INSTALLATION);
        try {
            if (!installation.exists()){
                writeInstallationFile(context,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(final Context context,File installation) throws IOException {
    FileOutputStream out = new FileOutputStream(installation);
    StringBuffer buf=new StringBuffer();
    buf.append(Settings.Secure.getString(context.getContentResolver(),Settings.Secure.ANDROID_ID));
    buf.append("-");
    buf.append(UUID.randomUUID().toString());
    out.write(buf.toString().getBytes());
    out.close();
}

}
于 2013-08-22T14:27:50.213 回答
0

获取 Android 设备唯一 ID 的最简单代码:(这也适用于平板电脑。)

    String deviceId = Secure.getString(MainActivity.this.getContentResolver(),Secure.ANDROID_ID);
    Log.d("Device ID",deviceId);
于 2013-08-22T14:19:37.213 回答
0

另一种可能:

final TelephonyManager tm = (TelephonyManager) c
        .getSystemService(Context.TELEPHONY_SERVICE);
Log.w("ID", tm.getDeviceId());
于 2013-08-22T14:26:45.453 回答