在Android中将文件(img / doc)从特定路径复制到另一个路径

时间:2013-03-12 07:30:37

标签: android file-io

我的应用程序中有一个功能,我在其中保存了doc / img文件路径。该文件位于文件夹中(例如“/mnt/sdcard/MyApp/MyItem/test.png”)。现在我想要做的是将此文件复制到其他文件夹(例如/mnt/sdcard/MyApp/MyItem/Today/test.png)。

现在我正在使用下面的代码,但它不起作用:

private void copyDirectory(File from, File to) throws IOException {


    try {
        int bytesum = 0;
        int byteread = 0;

            InputStream inStream = new FileInputStream(from);
            FileOutputStream fs = new FileOutputStream(to);
            byte[] buffer = new byte[1444];
            while ((byteread = inStream.read(buffer)) != -1) {
                bytesum += byteread;
                fs.write(buffer, 0, byteread);
            }
            inStream.close();
            fs.close();

    } catch (Exception e) {
    }
}

并点击按钮点击使用以下代码:

File sourceFile = new File(fileList.get(0).getAbsolutePath); //comes from dbs File targetFile = new File(Environment.getExternalStorageDirectory(),"MyApp/MyItem/Today/"); copyDirectory(sourceFile,targetFile, currDateStr);

知道为什么它不起作用吗?

2 个答案:

答案 0 :(得分:0)

这段代码对我来说很好。

public void copy(File src, File dst) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dst);

    // 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();
}

还有一件事是你在清单文件 * 中添加了写入外部存储空间的权限。 *

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

答案 1 :(得分:0)

Yup得到了它的工作,我没有在复制文件时给出文件名,并没有真正看错误日志,现在让它工作谢谢。上面的代码工作得很好。