HttpClient4.3.5

package com.restful.base;

import java.io.IOException;
import java.util.Map;

import net.sf.json.JSONObject;

import org.apache.http.HttpResponse;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class RestTemplate {

    /**
     * 调用 API
     *
     * @param parameters
     * @return
     */
    public static String doPost(String url, Map<String, Object> param) {

        String result = "";
        CloseableHttpClient httpCLient = HttpClients.createDefault();

        try {

            HttpPost httpPost = new HttpPost(url);
            StringEntity entity = new StringEntity(JSONObject.fromObject(param).toString(), "UTF-8");
            entity.setContentType("application/json");
            httpPost.setEntity(entity);
            RequestConfig requestConfig = RequestConfig.custom()  
                    .setConnectTimeout(5000).setConnectionRequestTimeout(3000)  
                    .setSocketTimeout(5000).build();  
            httpPost.setConfig(requestConfig);
            
            HttpResponse response = httpCLient.execute(httpPost);

            if (entity != null) {
                result = EntityUtils.toString(response.getEntity(), "UTF-8");

            }

        } catch (Exception e) {
            e.printStackTrace();

        } finally {
            try {
                
                if (httpCLient != null)
                    httpCLient.close();
                
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return result;
    }
    
    public static String doPost2(String url, Map<String, Object> param) {

        String result = "";
        CloseableHttpClient httpCLient = HttpClients.createDefault();

        try {

            HttpPost httpPost = new HttpPost(url);
            StringEntity entity = new StringEntity(JSONObject.fromObject(param).toString(), "UTF-8");
            entity.setContentType("application/json");
            httpPost.setEntity(entity);

            HttpResponse response = httpCLient.execute(httpPost);

            if (response.getStatusLine().getStatusCode() != 200) {
                //throw new Exception("接口连接异常,接口状态" + response.getStatus());
                return "error";
            }
            result = EntityUtils.toString(response.getEntity(), "UTF-8");

        } catch (Exception e) {
            e.printStackTrace();

        } finally {
            try {
                
                if (httpCLient != null)
                    httpCLient.close();
                
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return result;
    }
}

 

转载于:https://my.oschina.net/u/1260823/blog/727589

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值