使用小米号码归属地数据库,有两张表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,len);}is.close();fos.close();} catch (Exception e) {e.printstacktrace();}}
推荐阅读:
深入浅析Android手机卫士保存密码时进行md5加密
详解Android 手机卫士设置向导页面
浅析Android手机卫士关闭自动更新
浅析Android手机卫士自定义控件的属性
浅析Android手机卫士读取联系人
浅析Android手机卫士接收短信指令执行相应 *** 作
浅析Android手机卫士手机定位的原理
浅析Android手机卫士之手机实现短信指令获取位置
以上内容是小编给大家介绍的AndroID手机卫士之号码归属地查询的相关内容,希望对大家有所帮助!
总结以上是内存溢出为你收集整理的浅析Android手机卫士之号码归属地查询全部内容,希望文章能够帮你解决浅析Android手机卫士之号码归属地查询所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)