我尝试使用/storage/emulated/0/Download
DownloadManager
DownloadManager downloadManager = (DownloadManager) context.getApplicationContext().getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.allowScanningByMediaScanner();
request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE);
request.setAllowedOverRoaming(false);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setTitle("blah");
String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getAbsoluteFile().toString();
System.out.println(path);
request.setDestinationInExternalPublicDir(path, title);
request.setVisibleInDownloadsUi(true);
final long downloadReference = downloadManager.enqueue(request);
我确认path
确实返回了所需的下载路径。我的问题是,当文件实际下载时,它们会以/documents/blah
结束,如果卸载了应用程序,则会从设备中删除文件。
答案 0 :(得分:0)
你试过吗
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, file.name());