直接上代码:
/**
* 获取SIM卡运营商
*
* @param context
* @return
*/
public static String getOperators(Context context) {
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Conte...
分类:
移动开发 时间:
2014-08-27 23:31:18
阅读次数:
355
TextView tv=(TextView)findViewById(R.id.tv);
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
// 获取SIM卡的IMSI码
String imsi = telManag...
分类:
移动开发 时间:
2014-08-21 11:32:02
阅读次数:
237
TelephonyManager telManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); /** 获取SIM卡的IMSI码 * SIM卡唯一标识:IMSI 国际移动用户识别码...
分类:
其他好文 时间:
2014-08-18 18:24:32
阅读次数:
294
定义移动国家号 Mobile Country Code (MCC)由三位十进制数组成,它表明移动用户(或系统)归属的国家。 格式移动国家号(MCC)由三个十进制数组成,编码范围为十进制的000-999 传送移动国家号用于国际移动用户识别(IMSI)中和位置区识别(LAI)中。位置区识别(LAI)。位...
分类:
移动开发 时间:
2014-08-05 15:44:19
阅读次数:
716
由于国内的运营商问题,双卡手机获取IMSI号问题要根据厂商API 来实现。下面我们就来做一套完整的分析运营商获取IMSI号逻辑。1,首先我们要判断手机的平台。1.1,判断手机是否MTK平台?1234567891011121314151617181920212223242526272829303132...
分类:
移动开发 时间:
2014-07-16 19:18:56
阅读次数:
246
关于android各种双卡手机获取imei,imsi的处理(mtk,展讯,高通等)目前国内对于双卡智能手机的需求还是很大的,各种复杂的业务会涉及到双卡模块;而android标准的api又不提供对双卡的支持。导致国内双卡模块标准混乱,各个厂商各玩各的。目前我知道的双卡解决方案就有:mtk,展讯,高通,...
分类:
移动开发 时间:
2014-07-16 19:15:41
阅读次数:
309
can:1,connect, disconnect2,configure serial,nic,com,model,version,IMEI,IMSI,IP3,various AT command,reply delay and contents.step1, read *.ini ...dones...
分类:
其他好文 时间:
2014-06-18 17:26:49
阅读次数:
240