gpt4 book ai didi

android - java.lang.SecurityException : Unsupported path path/path/JPEG_5e3bbe8ed6c75_24741_. jpg

转载 作者:行者123 更新时间:2023-12-03 16:49:57 38 4
gpt4 key购买 nike

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

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);

最佳答案

用这个

setDestinationInExternalFilesDir(
context.applicationContext,
Environment.DIRECTORY_DOWNLOADS,
""
)

关于android - java.lang.SecurityException : Unsupported path path/path/JPEG_5e3bbe8ed6c75_24741_. jpg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60091359/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com