Android:DownloadManager setDestinationInExternalPublicDir(subPath, fileName)使用说明

DownloadManager.Request down=new DownloadManager.Request (Uri.parse(url)); 
…… …… ……
…… …… ……
down. setDestinationInExternalPublicDir(fileDir, name);
一、问题说明
setDestinationExternalPublicDir是将下载的文件保存到外部存储器(即:SD card)的自定义目录中,但是在使用过程中会出现一个现象:有时下载时,下载过程一闪而过,通知栏下载进度一闪就消失。

二、问题原因
后来查找原因发现:是因为外部存储目录不存在造成。

三、问题解决
鉴于以上原因,所以在使用 setDestinationInExternalPublicDir(subPath, fileName)之前,需要先判断subPath目录是否存在,不存在的话就先创建,然后在使用 setDestinationInExternalPublicDir (subPath, fileName)。例如下述操作:
private static final String EXTERNAL_DIR = "123Download";
private boolean isFolderExist(String dir) {
File folder = Environment.getExternalStoragePublicDirectory(dir);
return (folder.exists() && folder.isDirectory()) ? true : folder.mkdirs();
}

你可能感兴趣的:(Android)