安卓:使用下载管理器从互联网上下载文件并保存到内部存储器(Android: download fil

2019-09-19 03:15发布

我使用的下载从web文件到我的Android设备DownloadManager 。 我节省了使用SD卡本文件:

DownloadManager.Request req = new DownloadManager.Request(Uri.parse("file path"));
req.setTitle("file title").setDescription("Downloading ....") // download the package at the /sdcard/download path.
.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "file name"+ "file extension");

我想把它保存到内部存储。 怎么做?

Answer 1:

使用此路径.setDestinationInExternalPublicDir(Environment.getExternalStorageDirectory() +"/Android/data/xxx.xxx.xxx/files/")



文章来源: Android: download file from internet using DownloadManager and save it to the internal memory