簡體   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