SQLiteデータベースは完全に自己完結型のファイルであり、ポータブルです。ファイル全体をSDカードに直接コピーできます。
最初に、SDカードがデバイスにインストールされているかどうか、およびそのパスが何であるかを確認します(Environment.getExternalStorageDirectory()
を使用)。
このコードは私のために働きます!
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) {
}
これが非ルート電話で機能するかどうかは誰にもわかりますか?私はルート化されたG1でのみ試しました。
try {
File sd = Environment.getExternalStorageDirectory();
File data = Environment.getDataDirectory();
if (sd.canWrite()) {
String currentDBPath = "//data//"+ packageName +"//databases//"+dbList[0];
String backupDBPath = dbList[0];
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
FileChannel src = new FileInputStream(currentDB).getChannel();
FileChannel dst = new FileOutputStream(backupDB).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
Toast.makeText(getBaseContext(), backupDB.toString(), Toast.LENGTH_LONG).show();
}
} catch (Exception e) {
Toast.makeText(getBaseContext(), e.toString(), Toast.LENGTH_LONG).show();
}
それは、「/」が「\」が私の人生の20分の無駄になっている上記の例とは対照的に機能しますが、実際にはもっと早く見るべきでした。 Toast
は、ファイルがどこに配置されているか、または機能しない場合に何が問題なのかを示します。
I 回答済みSQLiteOpenHelper
に配置できる方法でこれに似た質問。 dbファイルを何らかの外部ストレージから内部アプリケーションストレージにコピーするのと同じくらい簡単です。また、dbファイルを開いて読み取り、Androidがデータベース呼び出しを行うための適切な状態にあることを確認するための追加コードもあります。
public static void BackupDatabase() throws IOException
{
boolean success =true;
File file = null;
file = new File(Environment.getExternalStorageDirectory() +"/M.O.L.S_Backup");
if (file.exists())
{
success =true;
}
else
{
success = file.mkdir();
}
if (success)
{
String inFileName = "/data/data/com.sygic.sdk.demo/databases/MOLS_DB.s3db";
File dbFile = new File(inFileName);
FileInputStream fis = new FileInputStream(dbFile);
String outFileName = Environment.getExternalStorageDirectory()+"/M.O.L.S_Backup/MOLS_DB.s3db";
// Open the empty db as the output stream
OutputStream output = new FileOutputStream(outFileName);
// Transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[1024];
int length;
while ((length = fis.read(buffer))>0) {
output.write(buffer, 0, length);
}
output.flush();
output.close();
fis.close();
}
}
許可を与える必要がありますAndroid.permission.WRITE_EXTERNAL_STORAGE
アプリケーションで。ルート化されていないデバイスでも正常に動作します。
電話がルート化されているかどうかはわかりませんが、ファイルを書き込む必要があります:
/Android/data/{package_name}/files/
これは、ルート化されているかどうかにかかわらず機能します。
これに慣れていない場合は、データベースアダプタでデータベース名を見つけます。
SharedPreferencesに対してもこれを行うことができますが、Context.MODE_PRIVATEをContext.MODE_MULTI_PROCESSに変更することに留意してください。
SharedPreferences_nameは次のようになります= ExportSP("temp.xml");
String currentPathForSharedPreferences = "/data/"+ context.getPackageName() +"/shared_prefs/"+ SharedPreferences_name;
輸出用
exportDB("MyDbName");
private void exportDB(String db_name){
File sd = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) +
File.separator + "Your Backup Folder"+
File.separator );
boolean success = true;
if (!sd.exists()) {
success = sd.mkdir();
}
if (success) {
File data = Environment.getDataDirectory();
FileChannel source=null;
FileChannel destination=null;
String currentDBPath = "/data/"+ context.getPackageName() +"/databases/"+db_name;
String backupDBPath = db_name;
File currentDB = new File(data, currentDBPath);
File backupDB = new File(sd, backupDBPath);
try {
source = new FileInputStream(currentDB).getChannel();
destination = new FileOutputStream(backupDB).getChannel();
destination.transferFrom(source, 0, source.size());
source.close();
destination.close();
Toast.makeText(this, "Please wait", Toast.LENGTH_SHORT).show();
} catch(IOException e) {
e.printStackTrace();
}
}}
インポート用
importDB("MyDbName");
private void importDB(String db_name){
File sd = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) +
File.separator + "Your Backup Folder"+
File.separator );
File data = Environment.getDataDirectory();
FileChannel source=null;
FileChannel destination=null;
String backupDBPath = "/data/"+ context.getPackageName() +"/databases/"+db_name;
String currentDBPath = db_name;
File currentDB = new File(sd, currentDBPath);
File backupDB = new File(data, backupDBPath);
try {
source = new FileInputStream(currentDB).getChannel();
destination = new FileOutputStream(backupDB).getChannel();
destination.transferFrom(source, 0, source.size());
source.close();
destination.close();
Toast.makeText(this, "Please wait", Toast.LENGTH_SHORT).show();
} catch(IOException e) {
e.printStackTrace();
}
}
@ skeniver's code 私にとってはうまくいきます。以下を追加したいだけです。
つかいます:
String currentDbPath = getApplicationContext().getDatabasePath("{database name}");
データベースパスが表示されます。次のように、パスをハードコーディングする代わりにそれを使用することをお勧めします。
String currentDbPath = "//data//{package name}//databases//{database name}";