3
E/UpdatesSettings( 7146): File write failed: java.io.IOException: open failed: EBUSY (Device or resource busy)
I/DownloadManager( 7621): Initiating request for download 11
W/DownloadManager( 7621): Aborting request for download 11: while opening destination file: java.io.FileNotFoundException: /storage/sdcard0/sysupdater/***.partial: open failed: EBUSY (Device or resource busy)
D/DownloadManager( 7621): cleanupDestination() deleting /storage/sdcard0/sysupdater/***.partial

DownloadManager用来下载文件,有时它会像这样出来。谁能告诉我为什么以及如何解决这个问题?

4

1 回答 1

1

我遇到过类似的问题。

为避免 FileNotFoundException,请确保:

  1. 添加写入外部存储所需的权限(如果这是您尝试保存的位置),请将以下内容添加到 AndroidManifest.xml 中:

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    
  2. 创建您尝试下载到的子文件夹:

    File folder = new File(FOLDER_PATH);
    if (!folder.exists()) {
        folder.mkdir();
    }
    
于 2013-07-09T20:15:56.583 回答