91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

HttpURLConnection怎么在Java項目中使用

發布時間:2021-03-29 17:56:55 來源:億速云 閱讀:119 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關HttpURLConnection怎么在Java項目中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

包括使用HttpURLConnection執行get/post請求

package com.cn.testproject;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpConnectionUrlDemo {
  public static void main(String[] args) throws Exception {
    //get();
    post();
  }

 

  public static void get() throws Exception {
    String path = "http://www.baidu.com";
    URL url = new URL(path);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setConnectTimeout(5 * 1000);
    conn.setRequestMethod("GET");
    InputStream inStream = conn.getInputStream();
    byte[] data = toByteArray(inStream);
    String result = new String(data, "UTF-8");
    System.out.println(result);
  }

 

  public static void post() throws Exception {
    String encoding = "UTF-8";
    //post的form參數(json兼職對)
    String params = "[{\"addTime\":\"2011-09-19 14:23:02\"[],\"iccid\":\"1111\",\"id\":0,\"imei\":\"2222\",\"imsi\":\"3333\",\"phoneType\":\"4444\",\"remark\":\"aaaa\",\"tel\":\"5555\"}]";
    String path = "http://www.baidu.com";
    byte[] data = params.getBytes(encoding);
    URL url = new URL(path);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setRequestMethod("POST");
    conn.setDoOutput(true);
   
    conn.setRequestProperty("Content-Type", "application/x-javascript; charset=" + encoding);
    conn.setRequestProperty("Content-Length", String.valueOf(data.length));
    conn.setConnectTimeout(5 * 1000);
    OutputStream outStream = conn.getOutputStream();
    outStream.write(data);
    outStream.flush();
    outStream.close();
    System.out.println(conn.getResponseCode()); // 響應代碼 200表示成功
    if (conn.getResponseCode() == 200) {
      InputStream inStream = conn.getInputStream();
      String result = new String(toByteArray(inStream), "UTF-8");
      System.out.println(result); // 響應代碼 200表示成功
    }
  }
  private static byte[] toByteArray(InputStream input) throws IOException {
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    byte[] buffer = new byte[4096];
    int n = 0;
    while (-1 != (n = input.read(buffer))) {
      output.write(buffer, 0, n);
    }
    return output.toByteArray();
  }
}

關于HttpURLConnection怎么在Java項目中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

仙桃市| 镇雄县| 福建省| 綦江县| 博罗县| 海宁市| 佛学| 甘谷县| 高州市| 新泰市| 双城市| 区。| 新郑市| 兴安县| 洞头县| 娄底市| 天祝| 崇阳县| 新河县| 建阳市| 凉山| 阳曲县| 广水市| 平乐县| 宣汉县| 金秀| 嘉义市| 通江县| 新邵县| 望城县| 枣庄市| 杭锦后旗| 通河县| 周至县| 合川市| 合肥市| 东至县| 曲麻莱县| 海丰县| 屏南县| 收藏|