org.apache.http.client.methods.HttpPost#abort()源码实例Demo

下面列出了org.apache.http.client.methods.HttpPost#abort() 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: frpMgr   文件: WebHttpUtils.java
public static String postJson(String url, String json) {
    String data = null;
    logger.debug(">>>请求地址:{},参数:{}", url, json);
    try {
        HttpPost httpPost = new HttpPost(url);
        StringEntity entity = new StringEntity(json, ENCODE);
        entity.setContentEncoding(ENCODE);
        entity.setContentType("application/json");
        httpPost.setEntity(entity);
        try (CloseableHttpResponse response = httpClient.execute(httpPost)) {
            if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
                HttpEntity httpEntity = response.getEntity();
                data = EntityUtils.toString(httpEntity, ENCODE);
                logger.debug(">>>返回结果:{}", data);
                EntityUtils.consume(httpEntity);
            } else {
                httpPost.abort();
            }
        }
    } catch (Exception e) {
        logger.error(">>>请求异常", e);
    }
    return data;
}
 
源代码2 项目: PeonyFramwork   文件: HttpService.java
/**
 * post访问
 * @param url 地址
 * @param body 访问数据
 * @param contentType 访问的格式
 * @return 访问返回值
 */
@Suspendable
public String doPost(String url, final String body, ContentType contentType){
    HttpPost post = new HttpPost(url);
    String str = "";
    try {
        StringEntity strEn = new StringEntity(body, contentType);
        post.setEntity(strEn);

        HttpResponse response = httpclient.execute(post);
        HttpEntity entity = response.getEntity();

        if (entity != null) {
            InputStream instreams = entity.getContent();
            str = convertStreamToString(instreams);
            logger.info("get http post response:{}", str);
        }
    }catch (Exception e){
        logger.error("post exception:", e);
    }finally {
        post.abort();
    }
    return str;
}
 
源代码3 项目: common-project   文件: HttpUtil.java
public static String sendJSONPost(String url, String jsonData, Map<String, String> headers) {
    String result = null;
    HttpPost httpPost = new HttpPost(url);
    StringEntity postEntity = new StringEntity(jsonData, CHARSET_NAME);
    postEntity.setContentType("application/json");
    httpPost.setEntity(postEntity);
    httpPost.setHeader("Content-Type", "application/json");
    HttpClient client = HttpClients.createDefault();
    if (headers != null && !headers.isEmpty()) {
        headers.forEach((k, v) -> {
            httpPost.setHeader(k, v);
        });
    }
    try {
        HttpResponse response = client.execute(httpPost);
        HttpEntity entity = response.getEntity();
        result = EntityUtils.toString(entity, "UTF-8");
    } catch (Exception e) {
        logger.error("http request error ", e);
    } finally {
        httpPost.abort();
    }
    return result;
}
 
源代码4 项目: wish-pay   文件: HttpClientUtils.java
/**
 * HTTP Post 获取内容
 *
 * @param url     请求的url地址 ?之前的地址
 * @param params  请求的参数
 * @param charset 编码格式
 * @return 页面内容
 */
public static String doPost(String url, Map<String, String> params, String charset) throws Exception {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    try {
        List<NameValuePair> pairs = null;
        if (params != null && !params.isEmpty()) {
            pairs = new ArrayList<>(params.size());
            //去掉NameValuePair转换,这样就可以传递Map<String,Object>
            /*pairs = new ArrayList<NameValuePair>(params.size());*/
            for (Map.Entry<String, String> entry : params.entrySet()) {
                String value = entry.getValue();
                if (value != null) {
                    pairs.add(new BasicNameValuePair(entry.getKey(), value));
                }
            }
        }
        HttpPost httpPost = new HttpPost(url);
        if (pairs != null && pairs.size() > 0) {
            httpPost.setEntity(new UrlEncodedFormEntity(pairs, CHARSET));
        }
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, "utf-8");
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        throw e;
    }
}
 
源代码5 项目: frpMgr   文件: WebHttpUtils.java
public static String post(String url, Map<String, String> nameValuePair) {
    String data = null;
    logger.debug(">>>请求地址:{},参数:{}", url, JSON.toJSONString(nameValuePair));
    try {
        HttpPost httpPost = new HttpPost(url);
        if (nameValuePair != null) {
            List<NameValuePair> nvps = new ArrayList<NameValuePair>();
            for (Map.Entry<String, String> entry : nameValuePair.entrySet()) {
                nvps.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
            }
            httpPost.setEntity(new UrlEncodedFormEntity(nvps, ENCODE));
        }
        try (CloseableHttpResponse response = httpClient.execute(httpPost)) {
            if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
                HttpEntity entity = response.getEntity();
                data = EntityUtils.toString(entity);
                logger.debug(">>>返回结果:{}", data);
                EntityUtils.consume(entity);
            } else {
                httpPost.abort();
            }
        }
    } catch (Exception e) {
        logger.error(">>>请求异常", e);
    }
    return data;
}
 
源代码6 项目: charging_pile_cloud   文件: HttpClientUtil.java
/**
 * 封装HTTP POST方法
 *
 * @param
 * @param
 * @return
 * @throws Exception 
 */
public static String post(String url, Map<String, String> paramMap)
        throws Exception {
    @SuppressWarnings("resource")
    HttpClient httpClient = new CertificateAuthorityHttpClientUtil();
    HttpPost httpPost = new HttpPost(url);

    List<NameValuePair> formparams = setHttpParams(paramMap);
    UrlEncodedFormEntity param = new UrlEncodedFormEntity(formparams, "UTF-8");
    httpPost.setEntity(param);
    HttpResponse response = httpClient.execute(httpPost);
    String httpEntityContent = getHttpEntityContent(response);
    httpPost.abort();
    return httpEntityContent;
}
 
源代码7 项目: charging_pile_cloud   文件: HttpClientUtil.java
/**
 * 封装HTTP POST方法
 *
 * @param
 * @param (如JSON串)
 * @return
 */
public static String post(String url, String data) throws ClientProtocolException, IOException {
    HttpClient httpClient = new DefaultHttpClient();
    httpClient.getParams().setIntParameter("http.socket.timeout", 5000);
    HttpPost httpPost = new HttpPost(url);
    httpPost.setHeader("Content-Type", "text/json; charset=utf-8");
    httpPost.setEntity(new StringEntity(URLEncoder.encode(data, "UTF-8")));
    HttpResponse response = httpClient.execute(httpPost);
    String httpEntityContent = getHttpEntityContent(response);
    httpPost.abort();
    return httpEntityContent;
}
 
源代码8 项目: flash-waimai   文件: HttpClients.java
/**
 * 封装HTTP POST方法
 *
 * @param
 * @param (如JSON串)
 * @return
 * @throws ClientProtocolException
 * @throws IOException
 */
public static String post(String url, String data) throws ClientProtocolException, IOException {
	HttpClient httpClient = new DefaultHttpClient();
	HttpPost httpPost = new HttpPost(url);
	httpPost.setHeader("Content-Type", "text/json; charset=utf-8");
	httpPost.setEntity(new StringEntity(URLEncoder.encode(data, "UTF-8")));
	HttpResponse response = httpClient.execute(httpPost);
	String httpEntityContent = getHttpEntityContent(response);
	httpPost.abort();
	return httpEntityContent;
}
 
源代码9 项目: SpringMVC-Project   文件: HttpUtil.java
/**
 * HTTP Post 获取内容
 *
 * @param url     请求的url地址 ?之前的地址
 * @param params  请求的参数
 * @param charset 编码格式
 * @return 页面内容
 */
public static String doPost(String url, Map<String, String> params, String charset) {
    if (StringUtils.isBlank(url)) {
        return null;
    }

    try {
        List<NameValuePair> pairs = null;
        if (params != null && !params.isEmpty()) {
            pairs = Lists.newArrayListWithCapacity(params.size());
            for (Map.Entry<String, String> entry : params.entrySet()) {
                String value = entry.getValue();
                if (value != null) {
                    pairs.add(new BasicNameValuePair(entry.getKey(), value));
                }
            }
        }
        HttpPost httpPost = new HttpPost(url);
        if (pairs != null && pairs.size() > 0) {
            httpPost.setEntity(new UrlEncodedFormEntity(pairs, charset));
        }
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, CHARSET);
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        e.printStackTrace();
    }
    return null;
}
 
源代码10 项目: lightconf   文件: HttpTookit.java
/**
 * HTTP Post json
 * 
 * @param url
 * @param object
 * @return
 */
public static String doPostJson(String url, Object object) {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    try {
        String jsonStr = JsonMapper.toJsonString(object);
        HttpPost httpPost = new HttpPost(url);
        httpPost.setEntity(new StringEntity(jsonStr, CHARSET));
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, "utf-8");
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        logger.error("HttpClient post request error : ", e);
        ResultCode<String> reslut = new ResultCode<String>();
        reslut.setCode(Messages.API_ERROR_CODE);
        reslut.setMsg(Messages.API_ERROR_MSG);
        return JsonMapper.toJsonString(reslut);
    }
}
 
源代码11 项目: newblog   文件: HttpHelper.java
public String doPost(String url, List<NameValuePair> pairs, String charset) {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    log.info(" post url=" + url);
    try {
        HttpPost httpPost = new HttpPost(url);
        if (pairs != null && pairs.size() > 0) {
            httpPost.setEntity(new UrlEncodedFormEntity(pairs, charset));
        }
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, charset);
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        log.error("to request addr=" + url + ", " + e.getMessage());
        e.printStackTrace();
    }
    return null;
}
 
源代码12 项目: wish-pay   文件: HttpClientUtils.java
/**
 * 直接将json串post方式进行发送
 *
 * @param url
 * @param jsonStr
 * @return
 */
public static String doPost(String url, String jsonStr) throws Exception {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    try {
        HttpPost httpPost = new HttpPost(url);

        httpPost.setEntity(new StringEntity(jsonStr, CHARSET));
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, "utf-8");
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        throw e;
    }
}
 
源代码13 项目: newblog   文件: HttpHelper.java
public String doPostLongWait(String url, List<NameValuePair> pairs, String charset) {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    log.info(" post url=" + url);
    try {
        RequestConfig requestConfig = RequestConfig.custom()
                .setSocketTimeout(300000)
                .setConnectTimeout(30000).build();
        HttpPost httpPost = new HttpPost(url);
        httpPost.setConfig(requestConfig);
        if (pairs != null && pairs.size() > 0) {
            httpPost.setEntity(new UrlEncodedFormEntity(pairs, charset));
        }
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, charset);
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        log.error("to request addr=" + url + ", " + e.getMessage());
        e.printStackTrace();
    }
    return null;
}
 
源代码14 项目: dubbox   文件: HttpClientConnection.java
public void close() throws IOException {
    HttpPost request = this.request;
    if (request != null) {
        request.abort();
    }
}
 
源代码15 项目: Kingdee-K3Cloud-Web-Api   文件: ApiRequest.java
public void doPost() {
    HttpPost httpPost = getHttpPost();
    try {
        if (httpPost == null) {
            return;
        }

        httpPost.setEntity(getServiceParameters().toEncodeFormEntity());
        this._response = getHttpClient().execute(httpPost);

        if (this._response.getStatusLine().getStatusCode() == 200) {
            HttpEntity respEntity = this._response.getEntity();

            if (this._currentsessionid == "") {
                CookieStore mCookieStore = ((AbstractHttpClient) getHttpClient())
                        .getCookieStore();
                List cookies = mCookieStore.getCookies();
                if (cookies.size() > 0) {
                    this._cookieStore = mCookieStore;
                }
                for (int i = 0; i < cookies.size(); i++) {
                    if (_aspnetsessionkey.equals(((Cookie) cookies.get(i)).getName())) {
                        this._aspnetsessionid = ((Cookie) cookies.get(i)).getValue();
                    }

                    if (_sessionkey.equals(((Cookie) cookies.get(i)).getName())) {
                        this._currentsessionid = ((Cookie) cookies.get(i)).getValue();
                    }
                }

            }

            this._responseStream = respEntity.getContent();
            this._responseString = streamToString(this._responseStream);

            if (this._isAsynchronous.booleanValue()) {
                this._listener.onRequsetSuccess(this);
            }
        }
    } catch (Exception e) {
        if (this._isAsynchronous.booleanValue()) {
            this._listener.onRequsetError(this, e);
        }
    } finally {
        if (httpPost != null) {
            httpPost.abort();
        }
    }
}
 
源代码16 项目: dubbox   文件: HttpClientConnection.java
public void close() throws IOException {
    HttpPost request = this.request;
    if (request != null) {
        request.abort();
    }
}
 
源代码17 项目: newblog   文件: HttpHelper.java
/**
 * HTTP Post 获取内容
 *
 * @param url     请求的url地址 ?之前的地址
 * @param params  请求的参数
 * @param charset 编码格式
 * @return 页面内容
 */
public String doPost(String url, Map<String, String> params, String charset) {
    if (StringUtils.isBlank(url)) {
        return null;
    }
    log.info(" post url=" + url);
    try {
        List<NameValuePair> pairs = null;
        if (params != null && !params.isEmpty()) {
            pairs = new ArrayList<NameValuePair>(params.size());
            for (Map.Entry<String, String> entry : params.entrySet()) {
                String value = entry.getValue();
                if (value != null) {
                    pairs.add(new BasicNameValuePair(entry.getKey(), value));
                }
            }
        }
        HttpPost httpPost = new HttpPost(url);
        if (pairs != null && pairs.size() > 0) {
            httpPost.setEntity(new UrlEncodedFormEntity(pairs, charset));
        }
        CloseableHttpResponse response = httpClient.execute(httpPost);
        int statusCode = response.getStatusLine().getStatusCode();
        if (statusCode != 200) {
            httpPost.abort();
            throw new RuntimeException("HttpClient,error status code :" + statusCode);
        }
        HttpEntity entity = response.getEntity();
        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, charset);
        }
        EntityUtils.consume(entity);
        response.close();
        return result;
    } catch (Exception e) {
        log.error("to request addr=" + url + ", " + e.getMessage());
        e.printStackTrace();
    }
    return null;
}
 
源代码18 项目: javabase   文件: HttpClientUtil.java
private static String httpPostGZip(String url, Map<String, Object> paramMap, String code, long timer) {
    long funTimer = System.currentTimeMillis();
    log.info(timer + " request[" + url + "]  param[" + (paramMap == null?"NULL":paramMap.toString()) + "]");
    String content = null;
    if(StringUtils.isEmpty(url)) {
        return null;
    } else {
        DefaultHttpClient httpclient = new DefaultHttpClient();
        HttpPost method = new HttpPost(url);
        method.setHeader("Connection", "close");
        method.setHeader("Accept-Encoding", "gzip, deflate");
        method.setHeader("Accept", "text/plain");

        try {
            UrlEncodedFormEntity e = new UrlEncodedFormEntity(getParamsList(paramMap), code);
            method.setEntity(e);
            HttpResponse response = httpclient.execute(method);
            int status = response.getStatusLine().getStatusCode();
            log.info(timer + " status=" + status);
            if(status == 200) {
                boolean httpEntity = false;
                Header[] headers = response.getHeaders("Content-Encoding");
                if(headers != null && headers.length > 0) {
                    Header[] httpEntity1 = headers;
                    int is = headers.length;

                    for(int gzin = 0; gzin < is; ++gzin) {
                        Header isr = httpEntity1[gzin];
                        if(isr.getValue().toLowerCase().indexOf("gzip") != -1) {
                            httpEntity = true;
                        }
                    }
                }

                log.info(timer + " isGzip=" + httpEntity);
                HttpEntity var28 = response.getEntity();
                if(httpEntity) {
                    InputStream var29 = var28.getContent();
                    GZIPInputStream var30 = new GZIPInputStream(var29);
                    InputStreamReader var31 = new InputStreamReader(var30, code);
                    BufferedReader br = new BufferedReader(var31);
                    StringBuffer sb = new StringBuffer();

                    String tempbf;
                    while((tempbf = br.readLine()) != null) {
                        sb.append(tempbf);
                        sb.append("\r\n");
                    }

                    var31.close();
                    var30.close();
                    content = sb.toString();
                } else {
                    content = EntityUtils.toString(var28);
                }
            } else if(status == 500) {
                HttpEntity var27 = response.getEntity();
                content = EntityUtils.toString(var27);
            } else {
                method.abort();
            }
        } catch (Exception var25) {
            method.abort();
            log.error(timer + " request[" + url + "] ERROR", var25);
        } finally {
            if(!method.isAborted()) {
                httpclient.getConnectionManager().shutdown();
            }

        }

        log.info(timer + " request[" + url + "] cost:" + (System.currentTimeMillis() - funTimer));
        log.info(timer + " request[" + url + "] response[" + content + "]");
        return content;
    }
}
 
源代码19 项目: dubbox-hystrix   文件: HttpClientConnection.java
public void close() throws IOException {
    HttpPost request = this.request;
    if (request != null) {
        request.abort();
    }
}
 
源代码20 项目: pay   文件: HttpsRequest.java
public String sendPost(String url, String xmlObj) throws IOException, KeyStoreException, UnrecoverableKeyException, NoSuchAlgorithmException, KeyManagementException {

        if (!hasInit) {
            init();
        }

        String result = null;

        HttpPost httpPost = new HttpPost(url);

        //得指明使用UTF-8编码,否则到API服务器XML的中文不能被成功识别
        StringEntity postEntity = new StringEntity(xmlObj, "UTF-8");
        httpPost.addHeader("Content-Type", "text/xml");
        httpPost.setEntity(postEntity);

        //设置请求器的配置
        httpPost.setConfig(requestConfig);

        try {
            HttpResponse response = httpClient.execute(httpPost);

            HttpEntity entity = response.getEntity();

            result = EntityUtils.toString(entity, "UTF-8");

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

        } finally {
            httpPost.abort();
        }

        return result;
    }