o19830015 2013-02-20 06:08 采纳率: 12.5%
浏览 3065

重命名一个已存在的文件

有两个文件:

File src = new File("loc/xyz.mp3")File dst=new File("loc/xyz1.mp3")

现在我想将xyz.mp3重命名为dst,同时删除src文件,怎么才能实现?我试过的代码:

src.delete();
dst.renameTo(src);

在应用的背景中异步运行,第一次执行时成功了,但是第二次就崩溃了。

请帮忙解决一下,谢谢。

  • 写回答

2条回答 默认 最新

  • loFataMer 2013-02-20 06:33
    关注

    根据文档说明:

    Renames the file denoted by this abstract pathname.
    Many aspects of the behavior of this method are inherently platform-dependent: The rename operation might not be able to move a file from one filesystem to another, it might not be atomic, and it might not succeed if a file with the destination abstract pathname already exists. The return value should always be checked to make sure that the rename operation was successful.
    

    在AsyncTask中,不能保证srcdst。检测一下src.exists() && dst.exists()可能帮助你避免错误。 使用deleteOnExit也可以。

    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog