5

我有一个问题。我正在开发一些流媒体/视频下载应用程序。我正在使用DownloadManager进行视频下载。

请求是提供用户选择的保存目的地(SDCard 或内部手机存储)。

我在使用SAF和 DownloadManager 的 Lollipop 上遇到问题。

我向用户提供选择目录来存储我下载的文件:

Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
startActivityForResult(intent, REQUEST_CODE_FOR_DESTINATION);

在 onActivityResult 我通过

Uri treeUri = data.getData();
DocumentFile destinationDirUri = DocumentFile.fromTreeUri(this, treeUri);

现在,我需要将此目的地设置为 DownloadManager.Request 的目的地

Request request = new DownloadManager.Request(Uri.parse(getDownloadUrl()));
request.setTitle(downloadInfo.getTitle());
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationUri(destinationDirUri);

在我选择“下载/视频”目录后,执行

DownloadManager downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
downloadManager.enqueue(request);

我正进入(状态

E/RecordDownloader﹕ Error while retrieving download infos    
W/System.err﹕ java.lang.IllegalArgumentException: Not a file URI: content://com.android.externalstorage.documents/tree/primary%3ADownload%2Fvideo
W/System.err﹕ at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:167)
W/System.err﹕ at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:137)
W/System.err﹕ at android.content.ContentProviderProxy.insert(ContentProviderNative.java:475)
W/System.err﹕ at android.content.ContentResolver.insert(ContentResolver.java:1207)
W/System.err﹕ at android.app.DownloadManager.enqueue(DownloadManager.java:946)
W/System.err﹕ at ch.teleboy.download.RecordDownloader.enqueueDownloadRequest(RecordDownloader.java:102)
W/System.err﹕ at ch.teleboy.download.RecordDownloader.access$300(RecordDownloader.java:48)
W/System.err﹕ at ch.teleboy.download.RecordDownloader$DownloaderTask.run(RecordDownloader.java:191)
W/System.err﹕ at java.lang.Thread.run(Thread.java:818)

如果我尝试将一些文件写入选定的位置,它会起作用。

DocumentFile newFile = destinationDirUri.createFile("text/plain", "test.txt");
OutputStream out = getContentResolver().openOutputStream(newFile.getUri());
out.write("Some dummy text...".getBytes());
out.close()

有什么建议么?

4

0 回答 0