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

我开发了一个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”) ,以便为您的问题找到一个很好的解决方案。

你可以试试GET IMEI FROM J2ME ,从不同的手机上获取imei