如何以编程方式将文件从内部存储器移动到 android 中的 sdcard?

use*_*103 5 android file move

如何在android中将文件从设备的内部存储器移动到外部存储器?请提供代码示例。我的代码在下面

    private void moveFile(File file, File dir) throws IOException {
    File newFile = new File(dir, file.getName());
    FileChannel outputChannel = null;
    FileChannel inputChannel = null;
    try {
        outputChannel = new FileOutputStream(newFile).getChannel();
        inputChannel = new FileInputStream(file).getChannel();
        inputChannel.transferTo(0, inputChannel.size(), outputChannel);
        inputChannel.close();
        file.delete();
    } finally {
        if (inputChannel != null) inputChannel.close();
        if (outputChannel != null) outputChannel.close();
    }

}
Run Code Online (Sandbox Code Playgroud)

Geo*_*kas 1

从路径中删除尾部斜杠。不需要它,因为 example.png 不是目录。实际上不要硬编码 SD 卡的路径,因为它可能因设备而异。尝试使用Environment.getExternalStorageDirectory()来获取SD卡的路径,然后在最后添加任何尾随路径。

请查看文档