tring保存文件时的FileNotFound

时间:2015-08-13 19:19:56

标签: java android copy save

我有一个奇怪的问题。我试图保存我的sqlite数据库的备份。我已创建此代码

String DB_PATH;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            DB_PATH = context.getFilesDir().getAbsolutePath().replace("files", "databases") + File.separator;
        }
        else {
            DB_PATH = context.getFilesDir().getPath() + context.getPackageName() + "/databases/";
        }

    String currentDBPath = "portals.db";
    String backupDBPath = "backupname.db";
    File sd = new File(Environment.DIRECTORY_DOWNLOADS + "/" + backupDBPath);
    File data = new File(DB_PATH + currentDBPath);
    try {
        InputStream in = new FileInputStream(data);
        OutputStream out = new FileOutputStream(sd);

        // Transfer bytes from in to out
        byte[] buf = new byte[1024];
        int len;
        while ((len = in.read(buf)) > 0) {
            out.write(buf, 0, len);
        }
        in.close();
        out.close();

    } catch(Exception e) {
        int test = 1;
        e.printStackTrace();
    }

当我运行它时,我收到FileNotFound异常。不应该创建文件吗?我甚至试图创建一个虚拟文件仍然相同的结果。

请注意,我想将其保存在内存中,因为我的设备中没有SD卡。该代码有什么问题?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。

解决我的代码行问题

File sd = new File(Environment.DIRECTORY_DOWNLOADS + "/" + backupDBPath);

应该是这样的

    File sd = new File(Environment.getExternalStorageDirectory() + "/" + Environment.DIRECTORY_DOCUMENTS + "/" + backupDBPath);

对未来也很有意思。该文件已正确保存,但我只能在unplugin和插件设备后才能看到它。因此,在连接到pc

方面需要某种重启