溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java如何模擬ajax訪問(wèn)另一個(gè)項(xiàng)目的controller

發(fā)布時(shí)間:2021-08-23 13:51:08 來(lái)源:億速云 閱讀:117 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹了java如何模擬ajax訪問(wèn)另一個(gè)項(xiàng)目的controller,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

直接上碼

package com.ultrapower.zq.iscloud.web.boc.api.utils;
/**
 * create by liujie
 */
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
import java.util.Map;
import org.json.JSONObject;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
public class HttpUtils {
  /**
   * 向指定URL發(fā)送GET方法的請(qǐng)求
   * @param url
   *      發(fā)送請(qǐng)求的URL
   * @param param
   *      請(qǐng)求參數(shù),請(qǐng)求參數(shù)應(yīng)該是 name1=value1&name2=value2 的形式。
   * @return URL 所代表遠(yuǎn)程資源的響應(yīng)結(jié)果
   */
  public static String sendGet(String url, String param) {
    String result = "";
    BufferedReader in = null;
    try {
      String urlNameString = url + "?" + param;
      URL realUrl = new URL(urlNameString);
      // 打開(kāi)和URL之間的連接
      URLConnection connection = realUrl.openConnection();
      // 設(shè)置通用的請(qǐng)求屬性
      connection.setRequestProperty("accept", "*/*");
      connection.setRequestProperty("connection", "Keep-Alive");
      connection.setRequestProperty("user-agent",
          "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
      // 建立實(shí)際的連接
      connection.connect();
      // 獲取所有響應(yīng)頭字段
      Map<String, List<String>> map = connection.getHeaderFields();
      // 遍歷所有的響應(yīng)頭字段
      for (String key : map.keySet()) {
        System.out.println(key + "--->" + map.get(key));
      }
      // 定義 BufferedReader輸入流來(lái)讀取URL的響應(yīng)
      in = new BufferedReader(new InputStreamReader(
          connection.getInputStream()));
      String line;
      while ((line = in.readLine()) != null) {
        result += line;
      }
    } catch (Exception e) {
      System.out.println("發(fā)送GET請(qǐng)求出現(xiàn)異常!" + e);
      e.printStackTrace();
    }
    // 使用finally塊來(lái)關(guān)閉輸入流
    finally {
      try {
        if (in != null) {
          in.close();
        }
      } catch (Exception e2) {
        e2.printStackTrace();
      }
    }
    return result;
  }
  /**
   * 向指定 URL 發(fā)送POST方法的請(qǐng)求
   * @param url
   *      發(fā)送請(qǐng)求的 URL
   * @param param
   *      請(qǐng)求參數(shù),請(qǐng)求參數(shù)應(yīng)該是 name1=value1&name2=value2 的形式。
   * @return 所代表遠(yuǎn)程資源的響應(yīng)結(jié)果
   */
  public static String sendPost(String url) {
    PrintWriter out = null;
    BufferedReader in = null;
    String result = "";
    try {
      URL realUrl = new URL(url);
      // 打開(kāi)和URL之間的連接
      URLConnection conn = realUrl.openConnection();
      // 設(shè)置通用的請(qǐng)求屬性
      conn.setRequestProperty("accept", "*/*");
//      conn.setRequestProperty("connection", "Keep-Alive");
      conn.setRequestProperty("Content-Type", "application/json; charset=utf-8"); 
//      conn.setRequestProperty("user-agent",
//          "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
      // 發(fā)送POST請(qǐng)求必須設(shè)置如下兩行
      conn.setDoOutput(true);
      conn.setDoInput(true);
      // 獲取URLConnection對(duì)象對(duì)應(yīng)的輸出流
      out = new PrintWriter(conn.getOutputStream());
      // 發(fā)送請(qǐng)求參數(shù)
//      out.print(param);
      // flush輸出流的緩沖
      out.flush();
      // 定義BufferedReader輸入流來(lái)讀取URL的響應(yīng)
      in = new BufferedReader(
          new InputStreamReader(conn.getInputStream()));
      String line;
      while ((line = in.readLine()) != null) {
        result += line;
      }
    } catch (Exception e) {
      System.out.println("發(fā)送 POST 請(qǐng)求出現(xiàn)異常!"+e);
      e.printStackTrace();
    }
    //使用finally塊來(lái)關(guān)閉輸出流、輸入流
    finally{
      try{
        if(out!=null){
          out.close();
        }
        if(in!=null){
          in.close();
        }
      }
      catch(IOException ex){
        ex.printStackTrace();
      }
    }
    return result;
  }  
  public static void main(String[] args) {
//   Document doc = Jsoup.parse("http://xxx/xxxx?entName=餐飲管理有限公司");
//     System.out.println(doc);
    //發(fā)送 GET 請(qǐng)求
    String s=HttpUtils.sendPost("http://xxxxxxxx?entName=餐飲管理有限公司");
    System.out.println(s);
    //發(fā)送 POST 請(qǐng)求
//    String sr=HttpUtils.sendPost("http://localhost:6144/Home/RequestPostString", "key=123&v=456");
//    System.out.println(sr);
  }
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“java如何模擬ajax訪問(wèn)另一個(gè)項(xiàng)目的controller”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

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

AI