天天看點

在J2ME中獲得手機IMEI的方法

在J2ME中獲得手機IMEI的方法

IMEI是Internation mobile entity identification的簡稱,在手機中輸入*#06#可以顯示該數字,長度為15位,全球唯一,永遠不會沖突,是以可以作為識别使用者的一個标志。

下面是在J2ME中獲得IMEI的方法:

西門子: System.getProperty("com.siemens.IMEI");

三星: System.getProperty("com.samsung.imei");

索愛: System.getProperty("com.sonyericsson.imei");

摩托羅拉: System.getProperty("IMEI");

System.getProperty("com.motorola.IMEI");

諾基亞: System.getProperty("com.nokia.mid.imei");

繼續閱讀