Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use HttpsPost and CloseableHttpClient in java

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces how to use HttpsPost and CloseableHttpClient in java, the content is very detailed, interested friends can use for reference, I hope it can be helpful to you.

/ / request jsonpublic static String HttpsPost (String url, Map param) throws Exception {String respContent = ""; String restServiceURL = url; System.out.println (restServiceURL); CloseableHttpClient client = HttpClients.createDefault (); / / set the input parameter StringEntity entity = new StringEntity (JSONObject.toJSONString (param), "utf-8"); HttpPost httpGet = new HttpPost (restServiceURL); httpGet.addHeader ("Content-Type", "application/json;charset=UTF-8"); httpGet.setEntity (entity) HttpResponse resp = client.execute (httpGet); int statusCode = resp.getStatusLine (). GetStatusCode (); if (200==statusCode) {HttpEntity he = resp.getEntity (); respContent = EntityUtils.toString (he, "utf-8");} else {log.error ("request third party exception, status code {}, address {}", statusCode,url);} return respContent } / * http request application/x-www-form-urlencoded * / public static String HttpsPostXw (String url, Map param) throws Exception {String respContent = ""; String restServiceURL = url; CloseableHttpClient client = HttpClients.createDefault (); / / set the incoming parameter HttpPost httpGet = new HttpPost (restServiceURL); httpGet.setHeader ("Content-type", "application/x-www-form-urlencoded"); List nvps = new ArrayList () If (paramorphic null) {for (Map.Entry entry: param.entrySet ()) {nvps.add (new BasicNameValuePair (entry.getKey (), entry.getValue ();}} / / set parameters to httpGet.setEntity (new UrlEncodedFormEntity (nvps, "utf-8") in the request object) / / loading parameter if (paramorphic null) {for (Map.Entry entry: param.entrySet ()) {httpGet.setHeader (entry.getKey (), entry.getValue ());}} HttpResponse resp = client.execute (httpGet); int statusCode = resp.getStatusLine (). GetStatusCode (); if (200==statusCode) {HttpEntity he = resp.getEntity () RespContent = EntityUtils.toString (he, "utf-8");} else {log.error ("request third party exception, status code {}, address {}", statusCode,url);} return respContent;} share here on how to use HttpsPost and CloseableHttpClient in java. I hope the above can help you and learn more. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report