溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在java后臺發(fā)起一個get請求并獲取響應數(shù)據(jù)

發(fā)布時間:2021-02-19 15:56:49 來源:億速云 閱讀:231 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家?guī)碛嘘P怎么在java后臺發(fā)起一個get請求并獲取響應數(shù)據(jù),文章內容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

package com.jl.chromeTest;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.nio.charset.StandardCharsets;

/**
 * get請求測試
 */
public class Test {

 @org.junit.Test
  public void test() throws Exception{
  String result = get("http://www.baidu.com");
  System.out.println("result====="+result);
 }

 /**
  * get請求
  * @param url
  * @return
  * @throws Exception
  */
 public String get(String url) throws Exception {
  String content = null;
  URLConnection urlConnection = new URL(url).openConnection();
  HttpURLConnection connection = (HttpURLConnection) urlConnection;
  connection.setRequestMethod("GET");
  //連接
  connection.connect();
  //得到響應碼
  int responseCode = connection.getResponseCode();
  if (responseCode == HttpURLConnection.HTTP_OK) {
   BufferedReader bufferedReader = new BufferedReader(new InputStreamReader
     (connection.getInputStream(), StandardCharsets.UTF_8));
   StringBuilder bs = new StringBuilder();
   String l;
   while ((l = bufferedReader.readLine()) != null) {
    bs.append(l).append("\n");
   }
   content = bs.toString();
  }
  return content;
 }
}

結果如圖:

怎么在java后臺發(fā)起一個get請求并獲取響應數(shù)據(jù)

怎么在java后臺發(fā)起一個get請求并獲取響應數(shù)據(jù)

上述就是小編為大家分享的怎么在java后臺發(fā)起一個get請求并獲取響應數(shù)據(jù)了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI