«

在Android程序中使用已有的SQLite数据库

时间:2024-3-2 19:45     作者:韩俊     分类: Android


在之前做的联系人项目中,应用安装完以后需要显示数据库中预存的数据,这时需要导入已有的数据库contact.db。这也是一个面试题,那么如何实现呢?
首先在res中新建raw文件夹,resraw目录中的文件不会被压缩,这样可以直接提取该目录中的文件。那么如何把raw文件下面的数据库文件contact.db导入到Android程序中的database目录下呢?
下面提供一个导入现有数据库的工具类:importDatabase

public void importDatabase() {
        // 存放数据库的目录
        String dirPath = "/data/data/com.example.contact/databases";
        File dir = new File(dirPath);
        if (!dir.exists()) {
            dir.mkdir();
        }
        // 数据库文件
        File file = new File(dir, "contact.db");
        try {
            if (!file.exists()) {
                file.createNewFile();
            }
            // 加载需要导入的数据库
            InputStream is = this.getApplicationContext().getResources()
                    .openRawResource(R.raw.contact);
            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();
        } catcriOException e) {
            e.p`
ntStackTrace();
        }
    }

最后在MainActivity的oncreate()方法中调用importDatabase()方法即可,应用安装完成后数据库会自动创建。

        <p>版权声明:本文为博主原创文章,未经博主允许不得转载。</p>

标签: android

热门推荐