安卓:使用下载管理器从互联网下载文件并将其保存到内部存储器



我正在使用DownloadManager将文件从网络下载到我的Android设备。我正在使用以下方法将此文件保存在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");

我想将其保存到内部存储中。怎么做?

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

相关内容

  • 没有找到相关文章

最新更新