0

我开发了一个 j2me 移动应用程序。现在客户端想查看手机IMEI号码。

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

4

3 回答 3

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");
于 2012-05-21T07:10:33.350 回答
0

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

于 2012-11-08T07:39:11.347 回答
0

您可以将上述调用结合起来System.getProperty(“microedition.platform”),以便为您的问题找到一个好的解决方案。

于 2012-05-21T11:33:16.763 回答