Android:有没有办法使用浏览器或浏览器应用程序获取设备的IMEI

时间:2013-01-04 06:05:31

标签: android imei

我想获得IMEI号码。适用于使用浏览器或浏览器应用的Android手机。任何人都可以建议我这个... PLZ ..提前谢谢。

2 个答案:

答案 0 :(得分:2)

这将为您提供Android手机的IMEI号码 需要许可:READ_PHONE_STATE

TelephonyManager teleManager = 
    (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);  
String IMEI = teleManager.getDeviceId();

答案 1 :(得分:1)

您无法通过浏览器获取此类敏感信息,但请查看有关应用程序的此问题。 How to get the device's IMEI/ESN programmatically in android?