如何动态地获得J2ME手机IMEI号码?(how to dynamically get mobile

2019-06-24 15:21发布

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

所以,我不知道如何得到它,我已经试过这条线System.getProperty("com.nokia.IMEI"); 但它只会来空。

Answer 1:

诺基亚

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");


Answer 2:

您可以结合上述呼叫System.getProperty(“microedition.platform”)以获得良好的解决您的问题。



Answer 3:

您可以尝试GET IMEI从J2ME这从不同的手机IMEI得到



文章来源: how to dynamically get mobile IMEI number in J2me?