我想我有一个相当简单的问题。
http://www.vogella.com/blog/2011/06/14/android-downloadmanager-example/
我一直在关注上述网址中的教程。
如何更改下载的文件路径?
提前致谢
我想我有一个相当简单的问题。
http://www.vogella.com/blog/2011/06/14/android-downloadmanager-example/
我一直在关注上述网址中的教程。
如何更改下载的文件路径?
提前致谢
您可以使用此类信息配置DownloadManager.Request对象。在本教程中,该Request
对象是在onClick()
.
例如:
DownloadManager.Request req=new DownloadManager.Request(uri);
req.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI
| DownloadManager.Request.NETWORK_MOBILE)
.setAllowedOverRoaming(false)
.setTitle("Demo")
.setDescription("Something useful. No, really.")
.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS,
"test.mp4");
(以上代码来自此示例项目)
CommonsWare 答案的最后一行说明了目的地。他只是使用 sdcard 上的常规下载文件夹,但你也可以这样做:
req.setDestinationInExternalPublicDir("/mnt/sdcard/Myfolder", "file_name.extension");
您确保用户允许您的应用访问外部存储。包括此代码以供下载
DownloadManager downloadManager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
Uri uri = Uri.parse(url_string);
DownloadManager.Request request = new DownloadManager.Request(uri);
request.setVisibleInDownloadsUi(true); request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
// include this line if permission has been granted by user to external directory
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, uri.getLastPathSegment());
// or this line if not yet granted
request.setDestinationUri(Uri.parse("file://" + uri.getLastPathSegment());
Long reference = downloadManager.enqueue(request);
您可以尝试执行以下操作: