-1

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

获取设备 IMEI

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

4

1 回答 1

2

使用类似的东西:

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

注意:需要签名的 MIDlet。S60 第三版设备不需要签名即可获取此信息。在 40 系列手机上,这需要您的 MIDlet 已签名到运营商或制造商域,这仅适用于 40 系列第三版、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");
于 2012-05-10T04:22:18.610 回答