Android:使用DownloadManager从Internet下载文件并将其保存到内部存储器

时间:2012-07-05 08:50:52

标签: android memory storage internal download-manager

我正在使用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");

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

1 个答案:

答案 0 :(得分:1)

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