-3

我想使用android中的downloadmanager类下载多个文件我有100-200个图像文件但是当我尝试下载文件时应用程序崩溃但下载开始了?我该如何解决这个问题,我下载文件的代码是:

public void downloadimages(String url,String filename)
        {
          String ur1=url,v1=filename;
          downloadManager = (DownloadManager)getSystemService(DOWNLOAD_SERVICE);
          Uri Download_Uri = Uri.parse(ur1);
          DownloadManager.Request request = new DownloadManager.Request(Download_Uri);
          request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);
          request.setAllowedOverRoaming(false);
          request.setDescription("Android Data download using DownloadManager.");
          request.setDestinationInExternalFilesDir(getApplicationContext(),Environment.DIRECTORY_DOWNLOADS,v1 + ".jpg");
          downloadManager.enqueue(request);     

        }
02-23 16:45:28.695: E/AndroidRuntime(22646): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.newpicker/com.example.newpicker.AnotherActivity}: java.lang.IndexOutOfBoundsException: Invalid index 136, size is 136

这是我的日志猫

4

2 回答 2

1

你能告诉我们代码com.example.newpicker.AnotherActivity类吗,因为似乎错误来自这个类。

那么错误是 a IndexOutOfBoundsException,那么您是否尝试过使用较少的图像,例如 10 或 20?并在前 10 个恢复后运行?

于 2013-05-15T11:55:14.983 回答
0

尝试将此权限添加到您的 AndroidManifest:

<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
于 2013-03-28T13:18:00.930 回答