私が使用するSDカードにデータベースをエクスポートするとき
try {
File sd = new File(Environment.getExternalStorageDirectory()+"/ABC");
File data = Environment.getDataDirectory();
boolean success = false;
if (!sd.exists()) {
success = sd.mkdir();
}
if (sd.canWrite()) {
String currentDBPath = "\\data\\com.example.skurat\\databases\\Income.db";
String backupDBPath = "Income.db";
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
if (currentDB.exists() && success) {
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) {
}
その結果、ファイル「Income.db」がSDカードに保存されます。
私が使用するSDカードから新しいデータベースをインポートするとき
File dbfile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() +"/ABC/Income.db" );
String backupDBPath = "Income.db";
File backupDB = new File(dbfile, backupDBPath);
SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(dbfile, null);
// toDoDBAdapter = new DBAdapter(this, "Income.db"); written in the "onCreate" method, working correctly
toDoDBAdapter.dbHelper.onUpgrade(db, 1, 2);
// refresh screen, working correctly
populateTodoList();
そしてデータベースは更新されません。なんで?私はAPI 7を使用しています
ps
アプリケーションでSDカードからデータベースをインポートする別の方法を知っている場合は、教えてください、ありがとう