我已经开发了一个J2ME的移动应用程序。 现在,客户端希望看到移动IMEI号码。
所以,我不知道如何得到它,我已经试过这条线System.getProperty("com.nokia.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从J2ME这从不同的手机IMEI得到