gpt4 book ai didi

android 1.5,以编程方式将歌曲从/sd card/songs 复制到/sd card/backup

转载 作者:太空狗 更新时间:2023-10-29 16:24:30 28 4
gpt4 key购买 nike

我正在使用 eclipse 模拟器,我想以编程方式将一些 mp3 从 /sdcard/songs 复制到 /sdcard/backup,有什么办法吗?非常感谢任何帮助和代码 fragment !谢谢! :)

最佳答案

你可以试试这个:

try {
File sd = Environment.getExternalStorageDirectory();

if (sd.canWrite()) {
String sourcePath= "/path/to/source/file.mp3";
String destinationPath= "/path/to/destination/file.mp3";
File source= new File(sd, sourcePath);
File destination= new File(sd, destinationPath);
if (source.exists()) {
FileChannel src = new FileInputStream(source).getChannel();
FileChannel dst = new FileOutputStream(destination).getChannel();
dst.transferFrom(src, 0, src.size());
src.close();
dst.close();
}
} catch (Exception e) {}

关于android 1.5,以编程方式将歌曲从/sd card/songs 复制到/sd card/backup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5561592/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com