如何在Java ME中获取设备IMEI?

时间:2012-05-09 12:45:29

标签: java mobile java-me

我在J2me中获取设备IMEI时遇到问题,我已尝试过这些帖子中的所有字符串,并且区分大小写但我总是得到null

Getting Device IMEI

http://qa.java-samples.com/questions/742/how-to-get-the-imei-number-of-the-mobile

1 个答案:

答案 0 :(得分:2)

使用类似的东西:

Nokia
System.getProperty("phone.imei");
System.getProperty("com.nokia.imei");
System.getProperty("com.nokia.mid.imei"); //especially for S40  devices

注意:需要签名的MIDlet。 S60第3版设备不需要签名即可获取此信息。在Series 40手机上,这要求您的MIDlet签署到运营商或制造商域,这仅适用于Series 40 3rd Edition,FP1设备和更新版本。

Sony Ericsson
System.getProperty("com.sonyericsson.imei");

Samsung
System.getProperty("com.samsung.imei");

Motorola
System.getProperty("IMEI");

System.getProperty("com.motorola.IMEI");

Siemens
System.getProperty("com.siemens.IMEI");



LG
System.getProperty("com.lge.imei");