2012-05-21 65 views
0

我開發了一個j2me移動應用程序。現在客戶端希望看到移動IMEI號碼。如何在J2ME中動態獲取移動IMEI號碼?

所以我不知道如何得到它,我試過這條線System.getProperty("com.nokia.IMEI");,但它只會變爲空。

+3

檢查[這篇文章](http://mobilepit.com/10/how-to-get-imei-number-in-j2me-javame。 html),注意:你無法閱讀所有手機的IMEI,有一些手機在其中使用j2me,你可以閱讀它 –

+0

我已經看到這篇文章,我已經嘗試過使用這篇文章的那條線,但我沒有get.thanks任何其他想法? – cheliyan

+0

某些設備需要應用程序才能訪問IMEI –

回答

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"); 
+0

我已經看過這篇文章,我已經嘗試過使用這篇文章的那條線,但我沒有得到。感謝任何其他想法? – cheliyan

+0

System.getProperty(「phone.imei」); System.getProperty(「com.nokia.imei」); System.getProperty(「com.nokia.mid.imei」);我試過這些線路... – cheliyan

+0

它不工作? !!!! –

0

您可以將上述調用與System.getProperty(「microedition.platform」)結合起來,以便很好地解決您的問題。

+0

好吧,我會試試這個,得到迴應後會評論你。 – cheliyan

相關問題