我一直在尝试通过使用将我的数据库文件导出到我的 android 手机的外部存储器中
private final String DB_NAME = "MemberData";
private final String TABLE_NAME = "MemberDB";
 //Get a reference to the database
    File dbFile = this.getDatabasePath(DB_NAME);
    //Get a reference to the directory location for the backup
    File exportDir = new File(Environment.getExternalStorageDirectory(), "myAppBackups");
    if (!exportDir.exists()) {
      exportDir.mkdirs();
    }
    File backup = new File(exportDir, dbFile.getName());
    //Check the required operation String command = params[0];
    //Attempt file copy
    try {
      backup.createNewFile();
      fileCopy(dbFile, backup);
    } catch (IOException e) {
      /*Handle File Error*/ 
    }
private void fileCopy(File source, File dest) throws IOException {
      FileChannel inChannel = new FileInputStream(source).getChannel();
      FileChannel outChannel = new FileOutputStream(dest).getChannel();
      try {
        inChannel.transferTo(0, inChannel.size(), outChannel);
      } finally {
        if (inChannel != null) inChannel.close();
        if (outChannel != null) outChannel.close();
      }
    }
它设法创建了一个目录名称“myappsbackup”,但我的数据库无法复制。它总是大小为 0,我的桌子不见了。我的复制方法有问题吗?