1

嗨,我正在开发一个应用程序,其中我将数据存储到Sqlite& SharedPrefrences。我从 android 文档中研究过,他们说我们可以通过注册服务来做到这一点,但我认为这仅适用于云存储,因为我想在 SD 卡上备份数据。我也寻找过 FileBackHelper 但它没有给出任何明确性。

请告诉哪个是最好的实施方式?

4

1 回答 1

5

您可以像这样将您的 sqlite db 复制到 sdcard

private void exportDB(){
    File sd = Environment.getExternalStorageDirectory();
        File data = Environment.getDataDirectory();
       FileChannel source=null;
       FileChannel destination=null;
       String currentDBPath = "/data/"+ "com.your.package" +"/databases/"+db_name;
       String backupDBPath = SAMPLE_DB_NAME;
       File currentDB = new File(data, currentDBPath);
       File backupDB = new File(sd, backupDBPath);
       try {
            source = new FileInputStream(currentDB).getChannel();
            destination = new FileOutputStream(backupDB).getChannel();
            destination.transferFrom(source, 0, source.size());
            source.close();
            destination.close();
            Toast.makeText(this, "DB Exported!", Toast.LENGTH_LONG).show();
        } catch(IOException e) {
            e.printStackTrace();
        }
}

共享首选项文件位置主要由设备制造商选择,因此硬编码任何共享首选项文件的路径都不好。

于 2015-01-28T04:50:50.833 回答