小编Bha*_*ghi的帖子

java.lang.SecurityException: 不支持的路径 path/path/JPEG_5e3bbe8ed6c75_24741_.jpg

这不适用于某些设备。在三星设备中,他们不允许使用下载管理器下载文件。我已经在清单中定义了权限并获得了运行时权限。

DownloadManager downloadManager = (DownloadManager) getActivity().getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(uri);
request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE);
request.setTitle("");
request.setDescription("");
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationUri(Uri.fromFile(imageFile));
request.setMimeType("*/*");
downloadManager.enqueue(request);
Run Code Online (Sandbox Code Playgroud)

android download android-download-manager

5
推荐指数
2
解决办法
3813
查看次数