0
A
回答
1
您可以使用此示例開始:
try {
File sd = Environment.getExternalStorageDirectory();
File data = Environment.getDataDirectory();
if (sd.canWrite()) {
String currentDBPath = "\\data\\{package name}\\databases\\{database name}";
String backupDBPath = "{database name}";
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
if (currentDB.exists()) {
FileChannel src = new FileInputStream(currentDB).getChannel();
FileChannel dst = new FileOutputStream(backupDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
}
}
} catch (Exception e) {
// exception
}
1
// Local database
InputStream input = new FileInputStream(from);
// create directory for backup
File dir = new File(DB_BACKUP_PATH);
dir.mkdir();
// Path to the external backup
OutputStream output = new FileOutputStream(to);
// transfer bytes from the Input File to the Output File
byte[] buffer = new byte[1024];
int length;
while ((length = input.read(buffer))>0) {
output.write(buffer, 0, length);
}
output.flush();
output.close();
input.close();
+0
http://www.screaming-penguin.com/node/7749 – Android
相關問題
- 1. 在Android中備份/恢復到sdcard
- 2. 將/data/system/xxxx.bin備份到/ sdcard
- 3. 如何通過bat文件備份sql server 2014 db數據?
- 4. Django db備份postgres錯誤
- 5. 備份Derby DB Groovy腳本
- 6. Sqlite DB Android備份/恢復
- 7. 如何刪除備份文件,我不需要備份費爾
- 8. 如何存儲在備份文件一定數量的備份
- 9. 如何備份和恢復Azure文檔DB AZURE
- 10. 不能保存任何文件到SDCard
- 11. 如何備份文件流數據庫?
- 12. 如何持續備份日誌文件?
- 13. 如何上傳WinRAR的備份文件
- 14. 如何備份完整文件?
- 15. 如何在備份前驗證文件?
- 16. 如何備份Emacs自定義文件?
- 17. 如何使用pom.xml備份文件?
- 18. 如何編碼增量文件備份?
- 19. 如何壓縮備份日誌文件?
- 20. SQL Server MDF文件 - 如何備份
- 21. 如何在java中備份文件?
- 22. 如何備份android日曆文件?
- 23. 如何打開.dmp oracle備份文件
- 24. 如何備份Bacula的大文件?
- 25. 如何讀取itunes備份文件(Manifest.db)
- 26. 如何處理Gitlab備份文件
- 27. rsync如何在本地備份文件
- 28. 如何備份相關文件?
- 29. 如何刪除備份文件
- 30. 備份keystore.debug文件
http://stackoverflow.com/questions/2170031/backup-and-restore-sqllite-database-to-sdcard – kgiannakakis