欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

浅析Android手机卫士之号码归属地查询

程序员文章站 2024-02-28 18:23:34
使用小米号码归属地数据库,有两张表data1和data2 先查询data1表,把手机号码截取前7位 select outkey from data1 w...

使用小米号码归属地数据库,有两张表data1和data2

先查询data1表,把手机号码截取前7位

select outkey from data1 where id=”前七位手机号”

再查询data2表,

select location from data2 where id=”上面查出的outkey”

可以使用子查询

select location from data2 where id=(select outkey from data1 where id=”前7位手机号”)

创建数据库工具类

新建一个包xxx.db.dao

新建一个类numberaddressutils,新建一个静态方法querynumber

调用sqlitedatabase.opendatabase()方法,获取到sqlitedatabase对象,参数:数据库路径(/data/data/包名/files/xxx.db),游标工厂(null),打开方式(sqlitedatabse.open_readonly)

把数据库address.db拷贝到 /data/data/包名/files/目录里面

调用sqlitedatabase对象的rawquery()方法,获取到cursor对象,查询数据,参数:sql语句,string[]条件数组

例如:select location from data2 where id=(select outkey from data1 where id=?) ,new string[]{phone.substring(0,7)}

while循环cursor对象,条件调用cursor对象的movetonext()方法

循环中调用cursor对象的getstring()方法,传入字段索引

关闭游标cursor对象的close()方法

把得到的地址返回出去

拷贝数据库从assets目录到data目录

在欢迎页面,进行拷贝

调用getassets().open()方法,得到inputstream对象,参数:xxx.db文件名

获取file对象,new出来,参数:getfilesdir()获取到/data/data/包/files/目录,xxx.db

获取fileoutputstream对象,new出来,参数:file对象

定义缓冲区byte[] buffer,一般1024

定义长度len

while循环读取,条件:读入的长度不为-1

循环中调用fileoutputstream对象的write()方法,参数:缓冲区,从0开始,len长度

调用inputstream对象的close()方法

判断只要存在和长度大于0就不再拷贝了,调用file对象的exist()方法和length()方法大于0

numberqueryaddressutil.java

package com.qingguow.mobilesafe.utils;
import android.database.cursor;
import android.database.sqlite.sqlitedatabase;
public class numberqueryaddressutil {
private static final string path = "/data/data/com.qingguow.mobilesafe/files/address.db";
/**
* 查询号码归属地
* @param phone
* @return
*/
public static string queryaddress(string phone){
sqlitedatabase db=sqlitedatabase.opendatabase(path, null,sqlitedatabase.open_readonly);
cursor cursor=db.rawquery("select location from data2 where id=(select outkey from data1 where id=?)", new string[]{phone.substring(0,7)});
while(cursor.movetonext()){
string address=cursor.getstring(0);
return address;
}
cursor.close();
return "";
}
} 

拷贝数据库

private void copyaddressdatabase() {
try {
//判断是否存在
file file = new file(getfilesdir(), "address.db");
if (file.exists() && file.length() > 0) {
return;
}
inputstream is = getassets().open("address.db");
fileoutputstream fos = new fileoutputstream(file);
byte[] buffer = new byte[1024];
int len = 0;
while ((len = is.read(buffer)) != -1) {
fos.write(buffer, 0, len);
}
is.close();
fos.close();
} catch (exception e) {
e.printstacktrace();
}
}

推荐阅读:

浅析android手机卫士sim卡绑定

深入浅析android手机卫士保存密码时进行md5加密

详解android 手机卫士设置向导页面

浅析android手机卫士关闭自动更新

浅析android手机卫士自定义控件的属性

浅析android手机卫士读取联系人

浅析android手机卫士接收短信指令执行相应操作

浅析android手机卫士手机定位的原理

浅析android手机卫士之手机实现短信指令获取位置

以上内容是小编给大家介绍的android手机卫士之号码归属地查询的相关内容,希望对大家有所帮助!