Android如何访问数据库

时间:2013-08-16 11:03:52

标签: android database

我的应用程序有一个数据库。现在我想将备份数据库复制到标准用户文件夹或SD卡。 在Eclipse中,我在数据/数据/数据库中找到它 - 但真实设备上的数据库在哪里?

4 个答案:

答案 0 :(得分:0)

Eclipse显示的路径是正确的,设备的绝对路径更改,如果您已经设备生根,则可以看到该文件。始终在/ data / data / *中。如果您的设备没有root,则无法看到此文件

答案 1 :(得分:0)

在REAL REAL设备中,您无法访问这些文件!!!

答案 2 :(得分:0)

试试这个...只需替换lite.db它就是我的数据库名称。

private void copyDB() {
    File dir = new File(Environment.getExternalStorageDirectory()
            + "/backup");
    if (!dir.exists()) {
        dir.mkdirs();
    }
    File from = new File("/data/data/" + getPackageName() + "/databases/",
            "lite.db");
    File to = new File(dir, "lite.db");
    try {
        FileInputStream in = new FileInputStream(from);
        FileOutputStream out = new FileOutputStream(to);
        FileChannel fromChannel = null, toChannel = null;
        try {
            fromChannel = in.getChannel();
            toChannel = out.getChannel();
            fromChannel.transferTo(0, fromChannel.size(), toChannel);
        } finally {
            if (fromChannel != null)
                fromChannel.close();
            if (toChannel != null)
                toChannel.close();
        }
    } catch (IOException e) {
        Log.e("backup", "Error backuping up database: " + e.getMessage(), e);
    }

}

也不要忘记添加权限:

  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

答案 3 :(得分:0)

数据库存储在设备数据目录中,您可以使用Environment.getDataDirectory()获取它。在此目录中,您的数据库存储在以下路径中:/data/YOUR.PACKAGE.NAME/databases/YOUR.DB.NAME

以下是如何备份数据库的一个小例子:

public void exportDB() {
    try {
        File sd = Environment.getExternalStorageDirectory();
        File data = Environment.getDataDirectory();
        if(sd.canWrite()) {
            String currentDBPath = "//data//com.example.packagename//databases//" + DB_NAME;
            String backupDBPath = DB_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) {
        e.printStackTrace();
    }
}

当然,您还需要<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

之后,您可以使用“DB_NAME”提供的文件名在SD中找到您的数据库。