android HttpClient get请求与post请求工具类

今天在学习android的http通信时,在一个网上的demo中,发现了一个个人感觉比较好用的HttpClient发送get请求与post请求的工具类,所以个人把它整理与修改了一下,希望能够帮助有需要的人:

package com.example.httpnetwork;

import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;

/**
 * HTTP通信的工具类
 */
public final class HttpUtil {
	/** 定义HTTP通信的对象 */
	private static HttpClient httpClient = new DefaultHttpClient();
	/** 定义基础的请求URL */
	private static final String BASE_URL = "http://wenwen.soso.com/p/20120206/20120206134715-1866254203.jpg";
	/**
	 * 发送GET请求方法
	 * @param requestUrl 请求的URL
	 * @return 响应的数据
	 */
	public static InputStream sendGetRequest(String requestUrl){
		/** 创建get请求对象 */
		HttpGet httpGet = new HttpGet(BASE_URL + requestUrl);
		try {
			/** 执行GET请求 */
			HttpResponse response = httpClient.execute(httpGet);
			/** 判断响应的状态码: 200代表响应成功 */
			if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
				/** 获取响应的实体 */
				HttpEntity entity = response.getEntity();
				/** 返回响应的数据 */
				return entity.getContent();  //当需要返回为输入流InputStream时的返回值
				//return EntityUtils.toString(entity); // 当返回的类型为Json数据时,调用此返回方法
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return null;
	}
	
	/**
	 * 发送post请求
	 * @param requestUrl 请求的URL
	 * @param params 请求的参数
	 * @return 响应的数据
	 */
	public static InputStream sendPostRequest(String requestUrl, Map<String, String> params){
		/** 创建post请求对象 */
		HttpPost httpPost = new HttpPost(BASE_URL + requestUrl);
		try {
			/** 设置请求参数 */
			if (params != null && params.size() > 0){
				/** 将map转化成list集合 */
				List<NameValuePair> paramLists = new ArrayList<NameValuePair>();
				for (Map.Entry<String, String> map : params.entrySet()){
					paramLists.add(new BasicNameValuePair(map.getKey(), map.getValue()));
				}
				/** 为POST请设置请求参数 */
				httpPost.setEntity(new UrlEncodedFormEntity(paramLists, "UTF-8"));
			}
			/** 执行post请求 */
			HttpResponse response = httpClient.execute(httpPost);
			/** 对响应的状态做判断  */
			if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
				/** 服务器响应成功 , 获取响应实体*/
				HttpEntity entity = response.getEntity();
				/** 返回响应数据 */
				return entity.getContent();  //当需要返回为输入流InputStream时的返回值
				//return EntityUtils.toString(entity);
			}
		} catch (Exception e) {
			System.out.println(BASE_URL + requestUrl);
			e.printStackTrace();
		}
		return null;
	}
}


当然,基本请求Url  BASE_URL  需要我们视情况而定,当我们需要的返回值类型为输入流时
return entity.getContent(); //当需要返回为输入流InputStream时的返回值
当我们需要的返回值类型为Json格式字符串时,我们返回
return EntityUtils.toString(entity); // 当返回的类型为Json数据时,调用此返回方法下面是一个调用的Demo
XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="连接"
        android:onClick="check"/>
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/iv"/>
</LinearLayout>

调用代码:

public void check(View v){
        new Thread(){
            public void run() {
                InputStream is = HttpUtil.sendGetRequest("");
                Bitmap map = BitmapFactory.decodeStream(is);
                Message msg = Message.obtain();
                msg.obj = map;
                handler.sendMessage(msg);
            };
        }.start();
   }

private Handler handler = new Handler(){
        public void handleMessage(Message msg) {
            iv.setScaleType(ScaleType.FIT_CENTER);
            iv.setImageBitmap((Bitmap) msg.obj);
        };
};


效果图:


当然,本人调用的是HttpUtil.sendGetRequest("")方法,sendPostRequest()方法网络返回状态为400,估计要在项目中或者要自己建立服务器来处理Post请求才可以

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值