工具类一(HttpUtils篇)

把项目里老大写的好用的工具类分享一下。觉得好用的拿去。

import java.util.ArrayList;

import java.util.List;

import java.util.Map;

import org.apache.http.HttpEntity;

import org.apache.http.NameValuePair;

import org.apache.http.client.config.RequestConfig;

import org.apache.http.client.entity.UrlEncodedFormEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.methods.HttpPost;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClientBuilder;

import org.apache.http.message.BasicNameValuePair;

import org.apache.http.util.EntityUtils;


public class HttpUtilsTest {


//生成httpClient

private static final CloseableHttpClient httpClient;

publicstatic final StringCHAESET = "utf-8";

static {

RequestConfig config = RequestConfig.custom()

.setConnectTimeout(6000) //请求超时时间

.setSocketTimeout(6000) //响应超时时间

.build();

httpClient = HttpClientBuilder.create()

.setDefaultRequestConfig(config)

.build();

}

public static String httpGet(String url) throws Exception {

return httpGet(url,null);

}

public static String httpGet(String url, Map<String, String>params) throws Exception {

return httpGet(url,params, CHAESET);

}

/**

* @param url

* @param params

* @param charset

* @return

* @throws Exception

*/

public static String httpGet(String url, Map<String, String>params, String charset)throws Exception {

//构造url

if(params !=null && !params.isEmpty()) {

List<NameValuePair> pairs = new ArrayList<NameValuePair>();

for(Map.Entry<String, String>entry : params.entrySet()) {

if(entry.getValue() !=null) {

pairs.add(new BasicNameValuePair(entry.getKey(),entry.getValue()));

}

}

String queryString = EntityUtils.toString(new UrlEncodedFormEntity(pairs),charset); 

if(url.indexOf("?") != -1) {

url +="&" + queryString;

}else {

url +="?" + queryString;

}

}

//httpGet获取请求,返回数据

HttpGet httpGet =new HttpGet(url);

CloseableHttpResponse response = httpClient.execute(httpGet);

try{

int statusCode = response.getStatusLine().getStatusCode();

if(statusCode != 200) {

httpGet.abort();

thrownew RuntimeException("httpClient: error status code:" +statusCode);

}

HttpEntity entity =response.getEntity();

String result =null;

if(entity !=null) {

result = EntityUtils.toString(entity,charset);

}

EntityUtils.consume(entity);

returnresult;

}finally {

response.close();

}

}

public static String httpPost(String url, HttpEntityrequestEntity) throws Exception {

return httpPost(url,null, requestEntity);

}

public static String httpPost(String url, Map<String, String>params, HttpEntity requsetEntity) throws Exception {

//构建url

if(params !=null && !params.isEmpty()) {

List<NameValuePair> pairs = new ArrayList<NameValuePair>();

for(Map.Entry<String, String>entry : params.entrySet()) {

if(entry.getValue() !=null) {

pairs.add(new BasicNameValuePair(entry.getKey(),entry.getValue()));

}

}

String queryString = EntityUtils.toString(new UrlEncodedFormEntity(pairs),CHAESET);

if(url.indexOf("?") > 0) {

url +="&" + queryString;

}else {

url +="?" + queryString;

}

}

//httpPost请求获取数据

HttpPost httpPost =new HttpPost(url);

httpPost.setEntity(requsetEntity);

CloseableHttpResponse response = httpClient.execute(httpPost);

try{

int statusCode = response.getStatusLine().getStatusCode();

if(statusCode != 200) {

httpPost.abort();

thrownew RuntimeException("httpClient error status code:" +statusCode);

}

HttpEntity entity =response.getEntity();

String result =null;

if(entity !=null) {

result = EntityUtils.toString(entity,CHAESET);

}

EntityUtils.consume(entity);

returnresult;

}finally {

response.close();

}

}

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值