如何在J2me中动态获取移动IMEI号码?

时间:2012-05-21 07:04:30

标签: java java-me imei

我开发了一个j2me移动应用程序。现在,客户端希望看到移动IMEI号码。

所以我不知道如何获得它,我已经尝试过这一行System.getProperty("com.nokia.IMEI");但它只会变为空。

3 个答案:

答案 0 :(得分:4)

诺基亚

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

Note: Requires signed MIDlet. S60 3rd edition device does not requires signing to fetch this info.On Series 40 phones this requires that your MIDlet is signed to either operator or manufacturer domain, and this is only available in Series 40 3rd Edition, FP1 

设备和更新。 索尼爱立信

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

三星

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

摩托罗拉

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

西门子

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

LG

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

答案 1 :(得分:0)

您可以将上述调用与System.getProperty(“microedition.platform”)结合使用,以便更好地解决您的问题。

答案 2 :(得分:0)

您可以尝试GET IMEI FROM J2ME这可以从不同的手机获取imei