Java中的httpclient4.5应该怎么使用

 我来答
青鸟中关村专家
2016-03-01 · 知道合伙人软件行家
青鸟中关村专家
知道合伙人软件行家
采纳数:1734 获赞数:8440
就职于北大青鸟中关村,自2004年踏入北大青鸟这个行业,已经有11年工作经验和8年的培训经验,寓教于乐

向TA提问 私信TA
展开全部
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
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.protocol.HTTP;
import org.apache.http.util.EntityUtils;

@SuppressWarnings("deprecation")
public class HttpUtil {

    private static final String UTF_8 = HTTP.UTF_8;
    
    public static String post(String url , Map<String , String> params) throws Exception{
        DefaultHttpClient client = HttpFactory.createHttpClient();
        HttpPost post = new HttpPost(url);
        if(params != null ){
            List<BasicNameValuePair> lparams = new LinkedList<BasicNameValuePair>();
            for (ConcurrentHashMap.Entry<String, String> entry : params.entrySet()) {
                if (entry.getValue() != null) {
                    lparams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
                }else{
                    lparams.add(new BasicNameValuePair(entry.getKey(), ""));
                }
            }
            HttpEntity entiry = new UrlEncodedFormEntity(lparams, UTF_8);
            post.setEntity(entiry);
        }
        try {
            HttpResponse resonse = client.execute(post);
            return entityToString(resonse);
        } catch (Exception exception) {
            throw exception;
        } finally {
            post.abort();
            client.getConnectionManager().shutdown();
        }
    }

    public static String get(String url) throws Exception{
        DefaultHttpClient client = HttpFactory.createHttpClient();
        
        HttpGet get = new HttpGet(url);
        try {
            HttpResponse resonse = client.execute(get);
            return entityToString(resonse);
        } catch (Exception exception) {
            throw exception;
        } finally {
            get.abort();
            client.getConnectionManager().shutdown();
        }
    }

    public static String entityToString(HttpResponse resonse) throws Exception{
        HttpEntity entity = resonse.getEntity();
        if (entity != null) {
            String msg = null;
            try {
                msg = EntityUtils.toString(entity, UTF_8);
            } catch (IOException e) {
                e.printStackTrace();
            }
            int code = resonse.getStatusLine().getStatusCode();
            if (code == 200) {
                return msg;
            } else {
                String errerMsg = (msg == null ? null : msg);
                throw new Exception("http code:" + code +",error:"+ errerMsg);
            }
        }
        throw new Exception("http entity is null");
    }

    public static byte[] entityTobyte(HttpResponse resonse) throws Exception {
        HttpEntity entity = resonse.getEntity();
        if (entity != null) {
            byte[] buffer = null;
            try {
                buffer = EntityUtils.toByteArray(entity);
            } catch (IOException e) {
                e.printStackTrace();
            }
            int code = resonse.getStatusLine().getStatusCode();
            if (code == 200) {
                return buffer;
            } else {
                String errerMsg = (buffer == null ? null : new String(buffer, UTF_8));
                throw new Exception("http code:" + code +",error:"+ errerMsg);
            }
        }
        throw new Exception("http entity is null");
    }
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式