栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java 发送 post请求

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java 发送 post请求

import java.io.IOException;

import org.apache.http.client.methods.CloseableHttpResponse;
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;
import org.json.JSONObject;

public class SendPost {

    public static String doPost(String str) {
        // 创建Httpclient对象
        CloseableHttpClient httpClient = HttpClients.createDefault();
        CloseableHttpResponse response = null;
        String resultBackUp = "{ }";
        String result = "";
        try {
            // 创建Http Post请求
            HttpPost httpPost = new HttpPost("http://......");
            // 创建请求内容
            JSonObject param = new JSonObject();
            param.put("str", str);
            StringEntity stringEntity = new StringEntity(param.toString(), "utf-8");
            httpPost.setEntity(stringEntity);
            // 执行http请求
            response = httpClient.execute(httpPost);
            result = EntityUtils.toString(response.getEntity(), "utf-8");
            System.out.println(result);
        } catch (Exception e) {
            e.printStackTrace();//此处不用return,不管前面是否有异常都不会执行此处的return代码
            result = resultBackUp;//异常时执行这句
        } finally {//不管是否有异常,都会执行finally
            try {
                response.close();
                httpClient.close();
            } catch (IOException e) {
                e.printStackTrace();
                return resultBackUp;//close异常时返回
            }
            return result;//close无异常时返回
        }
    }
}

end 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/270342.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号