HttpClient发送Json数据到指定接口

Posted JohnKing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HttpClient发送Json数据到指定接口相关的知识,希望对你有一定的参考价值。

项目中遇到将Json数据发送到指定接口,于是结合网上利用HttpClient进行发送.

    /**
     * post发送json数据
     * @param url
     * @param param
     * @return
     */
    private String doPost(String url, JSONObject param) {
        HttpPost httpPost = null;
        String result = null;
        try {
            HttpClient client = new DefaultHttpClient();
            httpPost = new HttpPost(url);
            if (param != null) {
                StringEntity se = new StringEntity(param.toString(), "utf-8");
                httpPost.setEntity(se); // post方法中,加入json数据
                httpPost.setHeader("Content-Type", "application/json");
            }
            
            HttpResponse response = client.execute(httpPost);
            if (response != null) {
                HttpEntity resEntity = response.getEntity();
                if (resEntity != null) {
                    result = EntityUtils.toString(resEntity, "utf-8");
                }
            }
            
        } catch (Exception ex) {
            logger.error("发送到接口出错", ex);
        }
        return result;
    }

 

以上是关于HttpClient发送Json数据到指定接口的主要内容,如果未能解决你的问题,请参考以下文章

HttpClient通过Post方式发送Json数据

HttpClient通过Post方式发送Json数据

HttpClient向api发送空值,而不是查看json对象

C# 中HttpClient无法发送json对象

C# 中HttpClient无法发送json对象

C# 中HttpClient无法发送json对象