网络图片下载工具类

<span style="font-family:Comic Sans MS;font-size:18px;">package com.example.week4_day2_handledemo1;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;

/**
 * 
 * 网络图片下载工具类
 * 
 */
public class HttpIntenet {
	/**
	 * 判断是否有网络
	 */
	public static boolean isNet(Context context) {
		// 得到网络管理者
		ConnectivityManager manager = (ConnectivityManager) context
				.getSystemService(Context.CONNECTIVITY_SERVICE);
		NetworkInfo info = manager.getActiveNetworkInfo();
		if (info != null) {
			return true;
		} else {
			return false;
		}
	}

	/**
	 * 开启网络连接,下载图片
	 * 
	 * @param path
	 * @return
	 */
	public static byte[] httpintent(String path) {
		HttpClient httpclient = new DefaultHttpClient(); // 创建http请求客户端
		HttpGet httpget = new HttpGet(path); // 设置get请求
		ByteArrayOutputStream out = new ByteArrayOutputStream();// 把得到的内容放入输出流中
		try {
			HttpResponse httpresponse = httpclient.execute(httpget);// 执行请求
			if (httpresponse.getStatusLine().getStatusCode() == 200) { // 判断网络请求是否成功
				InputStream inputStream = httpresponse.getEntity()// 得到内容--输入流
						.getContent();
				byte[] buffer = new byte[1024];
				int tmp = 0;
				while ((tmp = inputStream.read(buffer)) != -1) {
					out.write(buffer, 0, tmp);// 读取tmp字节存入输出流中
					out.flush();// 刷新流
				}
			}
			return out.toByteArray();// 返回一个byte[]数据
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}
}
</span>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值