這篇“java如何發起http請求調用post與get接口”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“java如何發起http請求調用post與get接口”文章吧。
java自帶的,無需下載其他jar包
URLConnection方式調用,如果接口響應碼被服務端修改則無法接收到返回報文,只能當響應碼正確時才能接收到返回
public static String sendPost(String url, String param) { OutputStreamWriter out = null; BufferedReader in = null; StringBuilder result = new StringBuilder(""); try { URL realUrl = new URL(url); // 打開和URL之間的連接 URLConnection conn = realUrl.openConnection(); // 設置通用的請求屬性 conn.setRequestProperty("Content-Type","application/json;charset=UTF-8"); conn.setRequestProperty("accept", "*/*"); conn.setRequestProperty("connection", "Keep-Alive"); conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 發送POST請求必須設置如下兩行 conn.setDoOutput(true); conn.setDoInput(true); // 獲取URLConnection對象對應的輸出流 out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8"); // 發送請求參數 out.write(param); // flush輸出流的緩沖 out.flush(); // 定義BufferedReader輸入流來讀取URL的響應 in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8")); String line; while ((line = in.readLine()) != null) { result.append(line); } } catch (Exception e) { System.out.println("發送 POST 請求出現異常!"+e); e.printStackTrace(); } //使用finally塊來關閉輸出流、輸入流 finally{ if(out!=null){ try { out.close(); }catch(Exception ex){} } if(in!=null){ try { in.close(); }catch(Exception ex){} } } return result.toString(); }
HttpURLConnection方式調用
//ms超時毫秒,url地址,json入參 public static String httpJson(int ms,String url,String json) throws Exception{ String err = "00", line = null; StringBuilder sb = new StringBuilder(); HttpURLConnection conn = null; BufferedWriter out = null; BufferedReader in = null; try{ conn = (HttpURLConnection) (new URL(url.replaceAll("/","/"))).openConnection(); conn.setRequestMethod("POST"); conn.setDoOutput(true); conn.setDoInput(true); conn.setUseCaches(false); conn.setConnectTimeout(ms); conn.setReadTimeout(ms); conn.setRequestProperty("Content-Type","application/json;charset=utf-8"); conn.connect(); out = new BufferedWriter(new OutputStreamWriter(conn.getOutputStream(),"utf-8")); out.write(new String(json.getBytes(), "utf-8")); out.flush();//發送參數 int code = conn.getResponseCode(); if (conn.getResponseCode()==200){ in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8")); while ((line=in.readLine())!=null) sb.append(line); }//接收返回值 }catch(Exception ex){ err=ex.getMessage(); } try{ if (out!=null) out.close(); }catch(Exception ex){}; try{ if (in!=null) in.close(); }catch(Exception ex){}; try{ if (conn!=null) conn.disconnect();}catch(Exception ex){} if (!err.equals("00")) throw new Exception(err); return sb.toString(); }
使用的jar包
<dependency> <groupId>com.alibaba.csb.sdk</groupId> <artifactId>http-client</artifactId> <version>1.1.5.1</version> </dependency>
public static String httpPostJson(String url,String json) throws Exception{ String data=""; CloseableHttpClient httpClient = null; CloseableHttpResponse response = null; try { httpClient = HttpClients.createDefault(); HttpPost httppost = new HttpPost(url); httppost.setHeader("Content-Type", "application/json;charset=UTF-8"); StringEntity se = new StringEntity(json,Charset.forName("UTF-8")); se.setContentType("text/json"); se.setContentEncoding("UTF-8"); httppost.setEntity(se); response = httpClient.execute(httppost); int code = response.getStatusLine().getStatusCode(); System.out.println("接口響應碼:"+code); data = EntityUtils.toString(response.getEntity(), "utf-8"); EntityUtils.consume(response.getEntity()); } catch (Exception e) { e.printStackTrace(); } finally { if(response!=null){ try{response.close();}catch (IOException e){} } if(httpClient!=null){ try{httpClient.close();}catch(IOException e){} } } return data; }
使用的jar包同第2個中的jar包。
public static String sendPost(){ String result = ""; HttpParameters.Builder builder = HttpParameters.newBuilder(); builder.requestURL("URL") // 設置請求的URL .api("api") // 設置服務名 .version("version") // 設置版本號 .method("post") // 設置調用方式, get/post .accessKey("ak").secretKey("sk"); // 設置accessKey 和 設置secretKey // 設置請求參數(json格式) Map<String,String> param = new HashMap<String,String>(); param.put("key1","value1"); param.put("key2","value2"); //加密,沒有加密則不需要encryptParam,直接用param Map<String,String> encryptParam = new HashMap<String,String>(); encryptParam.put("key3", getData(JSON.toJSONString(param))); ContentBody cb = new ContentBody(JSON.toJSONString(encryptParam)); builder.contentBody(cb); try { result = HttpCaller.invoke(builder.build()); } catch (Exception e) { e.printStackTrace(); } return result; } //自己的加密方式 public static String getData(String data1){ return "加密后的密文"; }
使用java自帶的URLConnection
//將map型轉為請求參數型 public static String getUrlData(Map<Object, Object> data) throws Exception{ StringBuffer sb = new StringBuffer(); try { Set<Map.Entry<Object, Object>> entries = data.entrySet(); Iterator<Map.Entry<Object, Object>> iterators = entries.iterator(); while(iterators.hasNext()){ Map.Entry<Object, Object> next = iterators.next(); sb.append(next.getKey().toString().trim()).append("=").append(URLEncoder.encode(next.getValue() + "", "UTF-8").trim()).append("&"); } sb.deleteCharAt(sb.length() - 1); } catch (Exception e) { sb.append(e.toString()); } return sb.toString(); } //strUrl截止到?,例:http://127.0.0.1:8080/api/method? public static String httpGet(String strUrl){ Map<Object, Object> params = new HashMap<Object, Object>(); params.put("key1", "value1"); params.put("key2", "value2"); String url=strUrl + getUrlData(params); StringBuilder result = new StringBuilder(); BufferedReader in = null; try { URL realUrl = new URL(url); // 打開和URL之間的連接 URLConnection connection = realUrl.openConnection(); // 設置通用的請求屬性 connection.setRequestProperty("accept", "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立實際的連接 connection.connect(); // 獲取所有響應頭字段 // 定義 BufferedReader輸入流來讀取URL的響應 in = new BufferedReader(new InputStreamReader(connection.getInputStream(),"UTF-8")); String line; while ((line = in.readLine()) != null) { result.append(line); } } catch (Exception e) { System.out.println("發送GET請求出現異常!" + e); e.printStackTrace(); } finally { if (in != null){ try { in.close(); }catch(Exception e2){} } } return result.toString(); }
以上就是關于“java如何發起http請求調用post與get接口”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。