我通过此代码获取我的数据库文件
File dbFile=getDatabasePath("EdsysEyfsDB.db");
Log.v("database name checking", dbFile.toString());
我想将此数据库文件复制到SD卡,以便我可以为此做一些操作。但我无法对此进行任何操作。以下代码用于复制到SD卡
if (dbFile.exists()) {
InputStream inStream = new FileInputStream(dbFile);
String file = Environment.getExternalStorageDirectory().getPath()
+"/" + "database.db";
Log.d("file name checking in dbFilecondition", file);
FileOutputStream fs = new FileOutputStream(file);
byte[] buffer = new byte[1444];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread;
fs.write(buffer, 0, byteread);
}
inStream.close();
fs.close();
}
但我不会出现这种情况。数据库文件名在LogCat上正常运行。我已经允许读写文件。
答案 0 :(得分:48)
试试这个希望,这有助于你
public void exportDatabse(String databaseName) {
try {
File sd = Environment.getExternalStorageDirectory();
File data = Environment.getDataDirectory();
if (sd.canWrite()) {
String currentDBPath = "//data//"+getPackageName()+"//databases//"+databaseName+"";
String backupDBPath = "backupname.db";
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) {
}
}
如何致电
exportDatabse("YourDBName");
注意:
请记住添加写入外部存储的权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
,否则sd.canWrite()将为false。
答案 1 :(得分:0)
不幸的是,这些天来接受的答案无关紧要。问题出在错误的SD路径上。实际路径通常取决于移动设备的制造商,并且在不同型号上可能会有所不同。
我想出了一个简单的解决方案,可以独立于android版本检测到SD的实际路径,ContextCompat.getExternalFilesDirs [1]包含一个相关的字符串。在装有android 6至9版本的设备上进行了测试
第二个麻烦是定义了DB的路径。程序包名称前应包含“ data / data /”,例如:“ / data / data /” + getPackageName()+“ / databases /” + dbFilename;
这是我项目中代码的一部分
String sdPath;
private boolean isSDPresent(Context context) {
File[] storage = ContextCompat.getExternalFilesDirs(context, null);
if (storage.length > 1 && storage[0] != null && storage[1] != null) {
sdPath = storage[1].toString();
return true;
}
else
return false;
}
private boolean isContextValid(Context context) {
return context instanceof Activity && !((Activity) context).isFinishing();
}
public boolean exportDatabase(Context context, String localDbName, String backupDbName) {
if (isContextValid(context))
try {
if (!SettingsFile.isSDPresent(context)) {
Log.e(TAG, "SD is absent!");
return false;
}
File sd = new File(sdPath);
if (sd.canWrite()) {
File currentDB = new File("/data/data/" + context.getPackageName() +"/databases/", localDbName);
File backupDB = new File(sd, backupDbName);
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();
}
}
else {
Log.e(TAG, "SD can't write data!");
return false;
}
} catch (Exception e) {
}
else {
Log.e(TAG, "Export DB: Context is not valid!");
return false;
}
return true;
}