使用小米号码归属地数据库,有两张表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; androID.database.sqlite.sqliteDatabase;public class NumberqueryAddressUtil { private static final String path = "/data/data/com.qingguow.mobilesafe/files/address.db"; /** * 查询号码归属地 * @param phone * @return */ 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=?)",1)">new String[]{phone.substring(0,7)}); while(cursor.movetoNext()){ String address=cursor.getString(0); return address; } cursor.close(); return ""; }}
拷贝数据库
voID copyAddressDatabase() { try { //判断是否存在 file file = new file(getfilesDir(),"address.db"if (file.exists() && file.length() > 0) { ; } 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,0catch (Exception e) { e.printstacktrace(); } }
相关技术:
知乎:androID如何为ListvIEw设置自定义字体?
ListvIEw无法使用setTypeface
就像知乎app侧滑菜单这样的,像首页,发现,关注,收藏,草稿,提问这几个字如何更改为自定义的字体呢?
Allan:
我默认你说的自定义字体是指使用外部 ttf 字体文件
1. main/assets/Fonts 下放置 ttf 字体
2. 读取 ttf 字体文件
Typeface mTypeface = Typeface.createFromAsset(getAssets(),"Fonts/XXXXX.ttf");
3. 自定义 button/TextVIEw/EditText 等控件
setTypeface(getYourTypeface());
知乎:为什么大多数时候OutputStream都要被向上转型?
OutputStream os= new fileOutputStream()
为什么不直接这样:
fileOutputStream fos = new fileOutputStream()
得到一个OutputStream这个抽象类的实例有什么意义?
资深铁锈:
这样写是实现多态, 可以降低类之间的依赖性,可以使程序代码更加健壮。如果会用Spring框架的话,这样写带来的好处自然能够体会到。
另外:OutputStream os= new fileOutputStream() ; 得到一个OutputStream这个抽象类的实例这样说是不对的,抽象类是没有实例的,应该是得到OutputStream 的引用,fileOutputStream的实例。
总结
以上是内存溢出为你收集整理的[android] 手机卫士号码归属地查询全部内容,希望文章能够帮你解决[android] 手机卫士号码归属地查询所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)