在Android中下载网络图片,一般有两种方法。使用URLConnection/HttpURLConnection和DownloadManager。
一、使用URLConnection/HttpURLConnection
下载网络图片一般使用URL对象调用openConnection()方法获取URLConnection对象,然后从该对象中获取流。该操作类似于访问web服务器,而web服务器获取到的是HttpURLConnection。
URLConnection和HttpURLConnection都是用于建立(应用层的)网络连接的类。URLConnection是一种通用的连接方式,它支持多种协议,如 HTTP、HTTPS、FTP 等。HttpURLConnection是URLConnection的子类,提供了更多针对HTTP协议的功能。
OKHttpClient是第三方提供,对HttpURLConnection的升级;相对于HttpURLConnection更建议使用OKHttpClient。
如果仅是简单的HttpURLConnection的get服务,使用URLConnection即可。(如获取网络图片)
使用该方法下载的一般为小文件(几十kb到几百kb),大文件建议使用DownloadManager。
//目标地址
String imagePath="XXXX.jpg";
//私有文件-文件名
String fileName="fileName.XXX";
//创建URL
URL url=new URL(path);
//打开通道(连接)
URLConnection urlConnection=url.openConnection();
//获取数据输入流
InputStream inputStream=urlConnection.getInputStream();
//创建输出流
FileOutputStream fileOutputStream=openFileOutput(fileName,MODE_PRIVATE);
//存储数据
//缓存区-用于存储数据
byte bytes[]=new byte[4096];
//存储数据
while (true){
if(inputStream.read(bytes,0,bytes.length)!=-1){
fileOutputStream.write(bytes,0,bytes.length);
} else {
break;
}
}
//关闭流
fileOutputStream.close();
inputStream.close();
//关闭通道(连接)
urlConnection.disconnect();
tag:URL,url,URLConnection,图片,下载,网络图片,DownloadManager