亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

java發送http get請求的兩種方式

發布時間:2020-08-22 15:14:04 來源:腳本之家 閱讀:129 作者:小明快點跑 欄目:編程語言

長話短說,廢話不說

一、第一種方式,通過HttpClient方式,代碼如下:

public static String httpGet(String url, String charset)
   throws HttpException, IOException {
  String json = null;
  HttpGet httpGet = new HttpGet();
  // 設置參數
  try {
   httpGet.setURI(new URI(url));
  } catch (URISyntaxException e) {
   throw new HttpException("請求url格式錯誤。"+e.getMessage());
  }
  // 發送請求
  HttpResponse httpResponse = client.execute(httpGet);
  // 獲取返回的數據
  HttpEntity entity = httpResponse.getEntity();
  byte[] body = EntityUtils.toByteArray(entity);
  StatusLine sL = httpResponse.getStatusLine();
  int statusCode = sL.getStatusCode();
  if (statusCode == 200) {
   json = new String(body, charset);
   entity.consumeContent();
  } else {
   throw new HttpException("statusCode="+statusCode);
  }
  return json;
}

二、第二種方式,通過流的形式,貼代碼:

  /**
  * 發送http get請求
  * 
  * @param getUrl
  * @return
  */
  public String sendGetRequest(String getUrl)
  {
   StringBuffer sb = new StringBuffer();
   InputStreamReader isr = null;
   BufferedReader br = null;
   try
   {
     URL url = new URL(getUrl);
     URLConnection urlConnection = url.openConnection();
     urlConnection.setAllowUserInteraction(false);
     isr = new InputStreamReader(url.openStream());
     br = new BufferedReader(isr);
     String line;
     while ((line = br.readLine()) != null)
     {
      sb.append(line);
     }
   }
   catch (IOException e)
   {
     e.printStackTrace();
   }
   finally
   {
     fileOperator.closeResources(isr, br);
   }
   return sb.toString();
  }
}

這兩種實現方式不同,怎么使用看個人喜好吧,不過我在項目開發過程中,使用流的方式部署在預發機(linux機器)上會出現返回null的情況,但是本地windows卻正常訪問,而且,換另外一臺預發機也能正常獲取數據,目前還沒有研究出個所以然。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

呼玛县| 怀柔区| 盐津县| 湖口县| 盐源县| 平罗县| 玉田县| 开阳县| 监利县| 灯塔市| 武定县| 宾阳县| 富锦市| 墨竹工卡县| 德化县| 来安县| 巨鹿县| 上思县| 莫力| 淳安县| 怀集县| 高淳县| 舞阳县| 册亨县| 兴城市| 兴隆县| 徐州市| 漳州市| 利辛县| 锡林郭勒盟| 怀远县| 黑山县| 吉木萨尔县| 阜平县| 江口县| 都昌县| 宜丰县| 宽甸| 海阳市| 邹平县| 涿鹿县|