HttpclientUtil

参考:


import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class HttpUtil {
    protected Logger logger = LoggerFactory.getLogger(HttpUtil.class);
    private static HttpUtil instance = null;

    private HttpUtil() {
    }

    public static HttpUtil getInstance() {
        if (instance == null) {
            instance = new HttpUtil();
        }

        return instance;
    }

    public String sendHttpPost(String httpUrl) {
        HttpPost httpPost = new HttpPost(httpUrl);
        return this.sendHttpPost(httpPost);
    }

    public String sendHttpPost(String httpUrl, String params, String contentType) {
        HttpPost httpPost = new HttpPost(httpUrl);

        try {
            StringEntity stringEntity = new StringEntity(params, "UTF-8");
            stringEntity.setContentType(contentType);
            httpPost.setEntity(stringEntity);
        } catch (Exception var6) {
            throw new RuntimeException(var6);
        }

        return this.sendHttpPost(httpPost);
    }

    public String sendHttpPost(String httpUrl, String params) {
        return this.sendHttpPost(httpUrl, params, "application/x-www-form-urlencoded");
    }

    public String sendHttpPost(String httpUrl, Map<String, String> maps) {
        HttpPost httpPost = new HttpPost(httpUrl);
        List<NameValuePair> nameValuePairs = new ArrayList();
        Iterator var5 = maps.keySet().iterator();

        while(var5.hasNext()) {
            String key = (String)var5.next();
            nameValuePairs.add(new BasicNameValuePair(key, (String)maps.get(key)));
        }

        try {
            httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs, "UTF-8"));
        } catch (Exception var7) {
            throw new RuntimeException(var7);
        }

        return this.sendHttpPost(httpPost);
    }

    public String sendHttpPost(String httpUrl, Map<String, String> maps, List<File> fileLists) {
        HttpPost httpPost = new HttpPost(httpUrl);
        MultipartEntityBuilder meBuilder = MultipartEntityBuilder.create();
        Iterator var6 = maps.keySet().iterator();

        while(var6.hasNext()) {
            String key = (String)var6.next();
            meBuilder.addPart(key, new StringBody((String)maps.get(key), ContentType.TEXT_PLAIN));
        }

        var6 = fileLists.iterator();

        while(var6.hasNext()) {
            File file = (File)var6.next();
            FileBody fileBody = new FileBody(file);
            meBuilder.addPart("files", fileBody);
        }

        HttpEntity reqEntity = meBuilder.build();
        httpPost.setEntity(reqEntity);
        return this.sendHttpPost(httpPost);
    }

    private String sendHttpPost(HttpPost httpPost) {
        CloseableHttpClient httpClient = null;
        CloseableHttpResponse response = null;
        HttpEntity entity = null;
        String responseContent = null;

        try {
            httpClient = HttpClients.createDefault();
            response = httpClient.execute(httpPost);
            entity = response.getEntity();
            responseContent = EntityUtils.toString(entity, "UTF-8");
        } catch (Exception var14) {
            throw new RuntimeException(var14);
        } finally {
            try {
                if (response != null) {
                    response.close();
                }

                if (httpClient != null) {
                    httpClient.close();
                }
            } catch (IOException var13) {
                var13.printStackTrace();
            }

        }

        return responseContent;
    }
}

优化:

	/**
	 * 带参数的get请求
	 * 
	 * @param url
	 * @param map
	 * @return
	 * @throws Exception
	 */
	public static String doGet(String url, Map<String, Object> map)
			throws Exception {
		// 声明URIBuilder
		URIBuilder uriBuilder = new URIBuilder(url);
		// 判断参数map是否为非空
		if (map != null) {
			// 遍历参数
			for (Map.Entry<String, Object> entry : map.entrySet()) {
				// 设置参数
				uriBuilder.setParameter(entry.getKey(), entry.getValue()
						.toString());
			}
		}
		// 2 创建httpGet对象,相当于设置url请求地址
		HttpGet httpGet = new HttpGet(uriBuilder.build());
		return sendHttpReq(httpGet);
	}

	/**
	 * 不带参数的get请求
	 * 
	 * @param url
	 * @return
	 * @throws Exception
	 */
	public static String doGet(String url) throws Exception {
		return doGet(url,null);
	}

	/**
	 * 带参数的post请求
	 * 
	 * @param url
	 * @return
	 * @throws Exception
	 */
	public static String doPost(String url, Map<String, Object> reqMap,
			Map<String, String> headersMap) throws Exception {
		// 声明httpPost请求
		HttpPost httpPost = new HttpPost(url);
		for (Map.Entry<String, String> entry : headersMap.entrySet())
			httpPost.addHeader(entry.getKey(), entry.getValue());
		// 判断map不为空
		if (reqMap != null) {
			Gson gson = new GsonBuilder().create();
			// 创建form表单对象
			StringEntity formEntity = new StringEntity(gson.toJson(reqMap),
					"UTF-8");
			// 把表单对象设置到httpPost中
			httpPost.setEntity(formEntity);
		}
		return sendHttpReq(httpPost);
	}

	private static String sendHttpReq(HttpUriRequest method) {
		CloseableHttpClient httpClient = null;
		CloseableHttpResponse response = null;
		HttpEntity entity = null;
		String responseContent = null;

		try {
			httpClient = HttpClients.createDefault();
			response = httpClient.execute(method);
			entity = response.getEntity();
			responseContent = EntityUtils.toString(entity, "UTF-8");
		} catch (Exception var14) {
			throw new RuntimeException(var14);
		} finally {
			try {
				if (response != null) {
					response.close();
				}
				if (httpClient != null) {
					httpClient.close();
				}
			} catch (IOException var13) {
				var13.printStackTrace();
			}
		}
		return responseContent;
	}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值