Android:DownloadManager setDestinationInExterna...

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();
}
 
也可详见的我的网易博客:
http://songyuanlin1101.blog.163.com/blog/static/311263872013611104713943/
 

你可能感兴趣的:(一闪而过,andrid)