我正在使用下面的代碼嘗試將我的數據庫文件移動到我的SD卡。除了我在sd
之下得到紅線外,我沒有任何問題。有任何想法嗎?將我的數據庫移動到SD卡不工作
File data = Environment.getDataDirectory();
if (sd.canWrite()) {
String currentDBPath = "\\data\\application.package\\databases\\name";
String backupDBPath = "name";
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
if (currentDB.exists()) {
FileChannel src;
try {
src = new FileInputStream(currentDB).getChannel();
FileChannel dst = new FileOutputStream(backupDB).getChannel();
try {
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
} catch (IOException e) {
e.printStackTrace();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
你確定斜線的正確性嗎? – teoREtik
目錄是否存在? – Frank
我不確定斜線的正確性。我只是想在這個老問題之後給自己發送一份數據庫的副本。 http://stackoverflow.com/questions/5906703/how-to-attach-database-file-to-an-email-in-android – EGHDK