繁体   English   中英

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

[英]how to dynamically get mobile IMEI number in J2me?

我已经开发了一个j2me移动应用程序。 现在,客户端要查看移动IMEI号码。

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

诺基亚

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

您可以将上面的调用与System.getProperty(“microedition.platform”) ,以获得对您的问题的好的解决方案。

您可以尝试从J2ME获取IMEI,以从其他手机获取Imei

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM