如何在Android中获得 unically Deviceid? 适用于智能手机和平板电脑 据我所知,这可能不是真的吗?
此代码有效吗? http://android-developers.blogspot.com/2011/03/identifying-app-installations.html
答案 0 :(得分: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();
}
}
答案 1 :(得分:0)
获取Android设备唯一ID的最简单代码:(这也适用于平板电脑。)
String deviceId = Secure.getString(MainActivity.this.getContentResolver(),Secure.ANDROID_ID);
Log.d("Device ID",deviceId);
答案 2 :(得分:0)
另一种可能性:
final TelephonyManager tm = (TelephonyManager) c
.getSystemService(Context.TELEPHONY_SERVICE);
Log.w("ID", tm.getDeviceId());