成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

HttpURLConnection怎么在Java項目中使用

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

我們注重客戶提出的每個要求,我們充分考慮每一個細節(jié),我們積極的做好成都網(wǎng)站建設、網(wǎng)站制作服務,我們努力開拓更好的視野,通過不懈的努力,成都創(chuàng)新互聯(lián)公司贏得了業(yè)內(nèi)的良好聲譽,這一切,也不斷的激勵著我們更好的服務客戶。 主要業(yè)務:網(wǎng)站建設,網(wǎng)站制作,網(wǎng)站設計,微信小程序,網(wǎng)站開發(fā),技術(shù)開發(fā)實力,DIV+CSS,PHP及ASP,ASP.Net,SQL數(shù)據(jù)庫的技術(shù)開發(fā)工程師。

包括使用HttpURLConnection執(zhí)行g(shù)et/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參數(shù)(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();
  }
}

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

本文題目:HttpURLConnection怎么在Java項目中使用
標題路徑:http://jinyejixie.com/article10/pshhdo.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、網(wǎng)站制作、自適應網(wǎng)站、響應式網(wǎng)站網(wǎng)頁設計公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站托管運營
汾西县| 漠河县| 南投市| 女性| 永靖县| 诸暨市| 河池市| 边坝县| 宝应县| 崇左市| 三原县| 密云县| 黄山市| 新干县| 黄山市| 五大连池市| 扬中市| 塘沽区| 东辽县| 开封县| 库伦旗| 越西县| 红安县| 铁力市| 佛冈县| 前郭尔| 许昌县| 丹寨县| 济阳县| 托克逊县| 綦江县| 富裕县| 澄迈县| 绥江县| 阿尔山市| 华安县| 什邡市| 道孚县| 祁连县| 伊通| 保山市|