文件名称:android远程文件下载(任何格式)
文件大小:2KB
文件格式:TXT
更新时间:2015-05-29 07:59:28
android 文件下载 HTTP
文件下载的核心类代码,Drawable drawable = null; if (imageUrl == null) return null; String imagePath = ""; String fileName = ""; // 获取url中图片的文件名与后缀 if (imageUrl != null && imageUrl.length() != 0) { fileName = imageUrl.substring(imageUrl.lastIndexOf("/") + 1); }等等