java wifi定位原理_Android里实现基站和WIFI定位

CellInfoManager

importjava.lang.reflect.Method;

importjava.util.Iterator;

importjava.util.List;

importorg.json.JSONArray;

importorg.json.JSONException;

importorg.json.JSONObject;

importandroid.content.Context;

importandroid.telephony.CellLocation;

importandroid.telephony.NeighboringCellInfo;

importandroid.telephony.PhoneStateListener;

importandroid.telephony.TelephonyManager;

importandroid.telephony.gsm.GsmCellLocation;

importandroid.util.Log;

publicclassCellInfoManager {

privateintasu;

privateintbid;

privateintcid;

privatebooleanisCdma;

privatebooleanisGsm;

privateintlac;

privateintlat;

privatefinalPhoneStateListener listener;

privateintlng;

privateintmcc;

privateintmnc;

privateintnid;

privateintsid;

privateTelephonyManager tel;

privatebooleanvalid;

privateContext context;

publicCellInfoManager(Context paramContext) {

this.listener =newCellInfoListener(this);

tel = (TelephonyManager) paramContext.getSystemService(Context.TELEPHONY_SERVICE);

this.tel.listen(this.listener, PhoneStateListener.LISTEN_CELL_LOCATION | PhoneStateListener.LISTEN_SIGNAL_STRENGTH);

context = paramContext;

}

publicstaticintdBm(inti) {

intj;

if(i >=0&& i <=31)

j = i * 2+ -113;

else

j = 0;

returnj;

}

publicintasu() {

returnthis.asu;

}

publicintbid() {

if(!this.valid)

update();

returnthis.bid;

}

publicJSONObject cdmaInfo() {

if(!isCdma()) {

returnnull;

}

JSONObject jsonObject = newJSONObject();

try{

jsonObject.put("bid", bid());

jsonObject.put("sid", sid());

jsonObject.put("nid", nid());

jsonObject.put("lat", lat());

jsonObject.put("lng", lng());

} catch(JSONException ex) {

jsonObject = null;

Log.e("CellInfoManager", ex.getMessage());

}

returnjsonObject;

}

publicJSONArray cellTowers() {

JSONArray jsonarray = newJSONArray();

intlat;

intmcc;

intmnc;

intaryCell[] = dumpCells();

lat = lac();

mcc = mcc();

mnc = mnc();

if(aryCell ==null|| aryCell.length <2) {

aryCell = newint[2];

aryCell[0] = cid;

aryCell[1] = -60;

}

for(inti =0; i 

try{

intj2 = dBm(i +1);

JSONObject jsonobject = newJSONObject();

jsonobject.put("cell_id", aryCell[i]);

jsonobject.put("location_area_code", lat);

jsonobject.put("mobile_country_code", mcc);

jsonobject.put("mobile_network_code", mnc);

jsonobject.put("signal_strength", j2);

jsonobject.put("age",0);

jsonarray.put(jsonobject);

} catch(Exception ex) {

ex.printStackTrace();

Log.e("CellInfoManager", ex.getMessage());

}

}

if(isCdma())

jsonarray = newJSONArray();

returnjsonarray;

}

publicintcid() {

if(!this.valid)

update();

returnthis.cid;

}

publicint[] dumpCells() {

int[] aryCells;

if(cid() ==0) {

aryCells = newint[0];

returnaryCells;

}

List lsCellInfo = this.tel.getNeighboringCellInfo();

if(lsCellInfo ==null|| lsCellInfo.size() ==0) {

aryCells = newint[1];

inti = cid();

aryCells[0] = i;

returnaryCells;

}

int[] arrayOfInt1 =newint[lsCellInfo.size() *2+2];

intj =0+1;

intk = cid();

arrayOfInt1[0] = k;

intm = j +1;

intn = asu();

arrayOfInt1[j] = n;

Iterator iter = lsCellInfo.iterator();

while(true) {

if(!iter.hasNext()) {

break;

}

NeighboringCellInfo localNeighboringCellInfo = (NeighboringCellInfo) iter.next();

inti2 = localNeighboringCellInfo.getCid();

if((i2 <=0) || (i2 ==65535))

continue;

inti3 = m +1;

arrayOfInt1[m] = i2;

m = i3 + 1;

inti4 = localNeighboringCellInfo.getRssi();

arrayOfInt1[i3] = i4;

}

int[] arrayOfInt2 =newint[m];

System.arraycopy(arrayOfInt1, 0, arrayOfInt2,0, m);

aryCells = arrayOfInt2;

returnaryCells;

}

publicJSONObject gsmInfo() {

if(!isGsm()) {

returnnull;

}

JSONObject localObject = null;

while(true) {

try{

JSONObject localJSONObject1 = newJSONObject();

String str1 = this.tel.getNetworkOperatorName();

localJSONObject1.put("operator", str1);

String str2 = this.tel.getNetworkOperator();

if((str2.length() ==5) || (str2.length() ==6)) {

String str3 = str2.substring(0,3);

String str4 = str2.substring(3, str2.length());

localJSONObject1.put("mcc", str3);

localJSONObject1.put("mnc", str4);

}

localJSONObject1.put("lac", lac());

int[] arrayOfInt = dumpCells();

JSONArray localJSONArray1 = newJSONArray();

intk =0;

intm = arrayOfInt.length /2;

while(true) {

if(k >= m) {

localJSONObject1.put("cells", localJSONArray1);

localObject = localJSONObject1;

break;

}

intn = k *2;

inti1 = arrayOfInt[n];

inti2 = k *2+1;

inti3 = arrayOfInt[i2];

JSONObject localJSONObject7 = newJSONObject();

localJSONObject7.put("cid", i1);

localJSONObject7.put("asu", i3);

localJSONArray1.put(localJSONObject7);

k += 1;

}

} catch(JSONException localJSONException) {

localObject = null;

}

}

}

publicbooleanisCdma() {

if(!this.valid)

update();

returnthis.isCdma;

}

publicbooleanisGsm() {

if(!this.valid)

update();

returnthis.isGsm;

}

publicintlac() {

if(!this.valid)

update();

returnthis.lac;

}

publicintlat() {

if(!this.valid)

update();

returnthis.lat;

}

publicintlng() {

if(!this.valid)

update();

returnthis.lng;

}

publicintmcc() {

if(!this.valid)

update();

returnthis.mcc;

}

publicintmnc() {

if(!this.va

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值