栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在Android中将文件从内部存储复制到外部存储

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在Android中将文件从内部存储复制到外部存储

我解决了我的问题。问题出在原始代码中的目标路径中:

File dst = new File(dstPath);

该变量

dstPath
具有完整的目标路径,包括文件名,这是错误的。这是正确的代码片段:

String dstPath = Environment.getExternalStorageDirectory() + File.separator + "myApp" + File.separator;File dst = new File(dstPath);exportFile(pictureFile, dst);

private File exportFile(File src, File dst) throws IOException {    //if folder does not exist    if (!dst.exists()) {        if (!dst.mkdir()) { return null;        }    }    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());    File expFile = new File(dst.getPath() + File.separator + "IMG_" + timeStamp + ".jpg");    FileChannel inChannel = null;    FileChannel outChannel = null;    try {        inChannel = new FileInputStream(src).getChannel();        outChannel = new FileOutputStream(expFile).getChannel();    } catch (FileNotFoundException e) {        e.printStackTrace();    }    try {        inChannel.transferTo(0, inChannel.size(), outChannel);    } finally {        if (inChannel != null) inChannel.close();        if (outChannel != null) outChannel.close();    }    return expFile;}

感谢您的提示。



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/470226.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号