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

android实现raw文件夹导入数据库代码

程序员文章站 2022-06-29 09:38:35
有这样一道面试题: 如何将sqlite数据库(dictionary.db文件)与apk文件一起发布?    答: 把这个文件放在/res/raw目录...

有这样一道面试题:

如何将sqlite数据库(dictionary.db文件)与apk文件一起发布?


   答: 把这个文件放在/res/raw目录下即可。res\raw目录中的文件不会被压缩,这样可以直接提取该目录中的文件,会生成资源id。

那么如何把raw文件下面的数据库导入到安装的程序中的database目录下呢?

复制代码 代码如下:

    public void impordatabase() {
     //存放数据库的目录
     string dirpath="/data/data/com.hkx.wan/databases";
     file dir = new file(dirpath);
     if(!dir.exists()) {
      dir.mkdir();
     }
     //数据库文件
     file file = new file(dir, "abc.db");
     try {
      if(!file.exists()) {
       file.createnewfile();
      }
      //加载需要导入的数据库
      inputstream is = this.getapplicationcontext().getresources().openrawresource(r.raw.db_weather);
      fileoutputstream fos = new fileoutputstream(file);
      byte[] buffere=new byte[is.available()];
      is.read(buffere);
      fos.write(buffere);
      is.close();
      fos.close();

     }catch(filenotfoundexception  e){
      e.printstacktrace();
     }catch(ioexception e) {
      e.printstacktrace();
     }
    }