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

Java 如何在J2me中动态获取移动IMEI号?,java,java-me,imei,Java,Java Me,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 No

我开发了一个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("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(“microedition.platform”)
结合使用,以获得问题的良好解决方案。

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

您可以尝试从不同的手机获取imei

您可以尝试从不同的手机获取imei

检查,注意:您无法读取所有手机的imei,有些手机使用j2me您可以读取它我已经看过这篇文章了,我只是用这篇文章试过这句话,但我没有明白。谢谢你还有其他想法吗?有些设备需要签署应用程序才能访问IMEICheck,注意:你不能阅读所有手机的IMEI,有些手机使用j2me你可以阅读它我已经看过这篇文章了,我用这篇文章试过这句话,但没有得到。谢谢你还有其他想法吗?一些设备需要应用程序签名才能访问imei我已经看过这篇文章了,我用这篇文章试过这句话,但没有得到。谢谢你有其他想法吗?System.getProperty(“phone.imei”);System.getProperty(“com.nokia.imei”);System.getProperty(“com.nokia.mid.imei”);我试过这些线路……诺基亚需要签名MIDlet。S60第3版设备无需签名即可获取此信息。在40系列手机上,这要求您的MIDlet已签名到运营商或制造商域,这仅在40系列第3版FP1i中可用,我只是用这篇文章试过这句话,但我没有得到。谢谢你还有其他想法吗?System.getProperty(“phone.imei”);System.getProperty(“com.nokia.imei”);System.getProperty(“com.nokia.mid.imei”);我试过这些线路……诺基亚需要签名MIDlet。S60第3版设备无需签名即可获取此信息。在40系列手机上,这要求您的MIDlet已签名到运营商或制造商域,并且这仅在40系列第3版FP1中可用