首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2ME开发 >

在J2ME中取得手机IMEI的方法

2012-09-28 
在J2ME中获得手机IMEI的方法在J2ME中获得手机IMEI的方法IMEI是Internation mobile entity identification

在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");

热点排行