我是靠谱客的博主 独特小鸽子,这篇文章主要介绍发送post请求到https的url,现在分享给大家,希望可以做个参考。


public static JSONObject doPost(String url,String outUrl){
JSONObject jsonObject=null;
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpPost httpPost = new HttpPost();
httpPost.setEntity(new StringEntity(outUrl,"UTF-8"));
URI uri = null;
try {
uri = new URI(url);//视频中忘了加url,所以输出httpPost,会显示POST null HTTP/1.1
}
catch (URISyntaxException e1) {
e1.printStackTrace();
}
httpPost.setURI(uri);
System.out.println(httpPost);//POST null HTTP/1.1
try {
HttpResponse reponse = httpClient.execute(httpPost);
String result = EntityUtils.toString(reponse.getEntity(),"UTF-8");
System.out.println(result);
jsonObject=JSONObject.fromObject(result);
System.out.println(jsonObject);
}
catch (ClientProtocolException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
return jsonObject;
}

最后

以上就是独特小鸽子最近收集整理的关于发送post请求到https的url的全部内容,更多相关发送post请求到https内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(125)

评论列表共有 0 条评论

立即
投稿
返回
顶部