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

溫馨提示×

溫馨提示×

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

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

java發起http請求獲取返回的Json對象方法

發布時間:2020-09-23 13:00:07 來源:腳本之家 閱讀:166 作者:jeanFlower 欄目:編程語言

話不多說,先看代碼!

/**
 * Created by david on 2017-7-5.
 */
import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpRequestUtil {
 /**
  * 發起http請求并獲取結果
  * @param requestUrl 請求地址
  */
 public static JsonObject getXpath(String requestUrl){
  String res="";
  JsonObject object = null;
  StringBuffer buffer = new StringBuffer();
  try{
   URL url = new URL(requestUrl);
   HttpURLConnection urlCon= (HttpURLConnection)url.openConnection();
   if(200==urlCon.getResponseCode()){
    InputStream is = urlCon.getInputStream();
    InputStreamReader isr = new InputStreamReader(is,"utf-8");
    BufferedReader br = new BufferedReader(isr);
    String str = null;
    while((str = br.readLine())!=null){
     buffer.append(str);
    }
    br.close();
    isr.close();
    is.close();
    res = buffer.toString();
    JsonParser parse =new JsonParser();
    object = (JsonObject) parse.parse(res);
   }
  }catch(IOException e){
   e.printStackTrace();
  }
  return object;
 }
 public static JsonObject postDownloadJson(String path,String post){
  URL url = null;
  try {
   url = new URL(path);
   HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
   httpURLConnection.setRequestMethod("POST");// 提交模式
   // conn.setConnectTimeout(10000);//連接超時 單位毫秒
   // conn.setReadTimeout(2000);//讀取超時 單位毫秒
   // 發送POST請求必須設置如下兩行
   httpURLConnection.setDoOutput(true);
   httpURLConnection.setDoInput(true);
   // 獲取URLConnection對象對應的輸出流
   PrintWriter printWriter = new PrintWriter(httpURLConnection.getOutputStream());
   // 發送請求參數
   printWriter.write(post);//post的參數 xx=xx&yy=yy
   // flush輸出流的緩沖
   printWriter.flush();
   //開始獲取數據
   BufferedInputStream bis = new   BufferedInputStream(httpURLConnection.getInputStream());
   ByteArrayOutputStream bos = new ByteArrayOutputStream();
   int len;
   byte[] arr = new byte[1024];
   while((len=bis.read(arr))!= -1){
    bos.write(arr,0,len);
    bos.flush();
   }
   bos.close();
   JsonParser parse = new JsonParser();
   return (JsonObject)parse.parse(bos.toString("utf-8"));
  } catch (Exception e) {
   e.printStackTrace();
  }
  return null;
 }
 //測試
 public static void main(String args [] ) {
  JsonObject res = null;
 //  res = getXpath("http://ip.taobao.com/service/getIpInfo.php?ip=63.223.108.42");
  res = postDownloadJson("http://ip.taobao.com/service/getIpInfo.php?ip=63.223.108.42","123");
  System.out.println(res);
  System.out.println(res.get("code"));
  System.out.println(res.get("data"));
 }
}

看第一個方法,發送get請求獲取后臺數據,其中,將返回回來的字符串解析成json對象用到了google的Gson.jar包,用到了其中JsonParser的parse方法。

第二個方法,發送post數據到后臺并獲取后臺數據。

以上這篇java發起http請求獲取返回的Json對象方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

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

AI

松江区| 宝兴县| 葫芦岛市| 淮南市| 称多县| 比如县| 和顺县| 毕节市| 武清区| 余干县| 灵山县| 策勒县| 正宁县| 高邮市| 永春县| 宣汉县| 南华县| 汶上县| 梧州市| 巫溪县| 文昌市| 马关县| 锡林浩特市| 永清县| 平和县| 介休市| 宜州市| 宁阳县| 三都| 兴宁市| 涞水县| 巴楚县| 讷河市| 宜君县| 甘德县| 沂水县| 思南县| 安达市| 新昌县| 册亨县| 珠海市|