これを検索しましたが、回答が得られませんでした。 私はBudgetアプリを開発しており、2種類のデータベース(SqliteとShared-preferences)があります。私はsdcardのsqliteデータベースのバックアップ/復元ができますが、私はどのように共有環境設定データベースをバックアップして復元するのか分かりません。sdカードにバックアップを作成した後、Android SharedPreferencesをXMLファイルから復元するにはどうすればよいですか?
共有設定データベースをバックアップできますが、SDカードから復元する方法はわかりません。
データベース名: 1.magicbox_database.dbはsqliteのデータベースでは、 2.magicbox_database_sf.dbこれは、両方のデータベースのバックアップのためのコードであるsharedpreferencesデータベース
です。
if (isStoragePermissionGranted() == true) {
try {
File sd = Environment.getExternalStorageDirectory();
if (sd.canWrite()) {
String currentDBPath = "/data/data/" + getPackageName() + "/databases/OLBE_DEMO";
String backupDBPath = "magicbox_database.db";
File currentDB = new File(currentDBPath);
File backupDB = new File(sd, backupDBPath);
Toast.makeText(MainActivity.this, "backup creating....", Toast.LENGTH_SHORT).show();
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();
Toast.makeText(MainActivity.this, "Bckup Created !", Toast.LENGTH_SHORT).show();
Toast.makeText(MainActivity.this, "magicbox_database.db in External Storage", Toast.LENGTH_SHORT).show();
}
String currentDBPath1 = "/data/data/" + getPackageName() + "/shared_prefs/DATABASE.xml";
String backupDBPath1 = "magicbox_database_sf.xml";
File currentDB1 = new File(currentDBPath1);
File backupDB1 = new File(sd, backupDBPath1);
// Toast.makeText(MainActivity.this, "backup creating....", Toast.LENGTH_SHORT).show();
if (currentDB1.exists()) {
FileChannel src1 = new FileInputStream(currentDB1).getChannel();
FileChannel dst1 = new FileOutputStream(backupDB1).getChannel();
dst1.transferFrom(src1, 0, src1.size());
src1.close();
dst1.close();
//Toast.makeText(MainActivity.this, "Bckup Created !", Toast.LENGTH_SHORT).show();
Toast.makeText(MainActivity.this, "magicbox_database_sf.db in External Storage", Toast.LENGTH_SHORT).show();
}
}
} catch (Exception e) {
Toast.makeText(MainActivity.this, "ERROR! backup not created", Toast.LENGTH_SHORT).show();
}
}
両方
if (isStoragePermissionGranted() == true) {
try {
File sd = Environment.getExternalStorageDirectory();
if (sd.canWrite()) {
String currentDBPath = "/data/data/" + getPackageName() + "/databases/OLBE_DEMO";
String backupDBPath = "magicbox_database.db";
File currentDB = new File(currentDBPath);
File backupDB = new File(sd, backupDBPath);
Toast.makeText(MainActivity.this, "restoring......", Toast.LENGTH_SHORT).show();
if (currentDB.exists()) {
FileChannel src = new FileInputStream(backupDB).getChannel();
FileChannel dst = new FileOutputStream(currentDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
Toast.makeText(MainActivity.this, "Your data Restored !", Toast.LENGTH_SHORT).show();
}
String currentDBPath1 = "/data/data/" + getPackageName() + "/shared_prefs/DATABASE.xml";
String backupDBPath1 = "magicbox_database_sf.xml";
File currentDB1 = new File(currentDBPath1);
File backupDB1 = new File(sd, backupDBPath1);
if (currentDB1.exists()) {
FileChannel src1 = new FileInputStream(backupDB1).getChannel();
FileChannel dst1 = new FileOutputStream(currentDB1).getChannel();
dst1.transferFrom(src1, 0, src1.size());
src1.close();
dst1.close();
Toast.makeText(MainActivity.this, "magicbox_database_sf.db in External Storage", Toast.LENGTH_SHORT).show();
}
}
} catch (Exception e) {
Toast.makeText(MainActivity.this, "ERROR! data not restored", Toast.LENGTH_SHORT).show();
}
}
変更は、このコード
FileChannel src1 = new FileInputStream(backupDB1).getChannel();
FileChannel dst1 = new FileOutputStream(currentDB1).getChannel();
magicbox_database_sf.dbはsharedpreferencesデータベースです - これは何ですか? ean? – shadygoneinsane
共有プレフィックスはキー値のペアです! – shadygoneinsane
@shadygoneinsane magic_database_sf.dbはSDCARD –