Analysis of IMEI numbers IMEI 检查工具 LAC和CID 定位

查询IMEI 是否合法方法:手机拨号盘输入 *#06#

打开下面网址:https://www.numberingplans.com/?page=analysis&sub=imeinr


基站定位查询(测试)

通过手机的LAC和CID 定位到所在基站位置

安卓获取LAC和CID 方法

TelephonyManager tm = (TelephonyManager)TelephonyManager.from(this);
		sim_network = tm.getSimOperator(getSubIdBySlotId(simId));
		Log.e(TAG, "TelephonyManagerEx is getNetworkOperator sim_network="+sim_network);
		GsmCellLocation loc = (GsmCellLocation)tm.getCellLocation();
		if (loc == null) {
			Log.e(TAG, "GsmCellLocation is null");
			return "";
		}
		int cellId= loc.getCid();
		int lacId = loc.getLac();
		
		if ("FFFFFFFF".equalsIgnoreCase(Integer.toHexString(cellId))
				|| "FFFFFFFF".equalsIgnoreCase(Integer.toHexString(lacId))) {
			Log.e(TAG, "GsmCellLocation cellId ="+Integer.toHexString(cellId)+",lac="+Integer.toHexString(lacId));
			return "";
		}
		
		CELL_ID.append(Integer.toHexString(cellId).toUpperCase());
		LAC_ID.append(Integer.toHexString(lacId).toUpperCase());
通过 这个值可以到下面网站去定位大概位置;

http://www.cellid.cn/ 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值