Java 發起 http 請求

一、GET與POST

GET和POST是HTTP的兩個常用方法。
GET指從指定的服務器中獲取數據
POST指提交數據給指定的服務器處理

1.GET方法

使用GET方法,需要傳遞的參數被附加在URL地址後面一起發送到服務器。
例如:http://192.168.0.19/submit?name=zxy&age=21
特點:

  • GET請求能夠被緩存
  • GET請求會保存在瀏覽器的瀏覽記錄中
  • 以GET請求的URL能夠保存爲瀏覽器書籤
  • GET請求有長度限制
  • GET請求主要用以獲取數據

2.POST方法

使用POST方法,需要傳遞的參數在POST信息中單獨存在,和HTTP請求一起發送到服務器。
例如:
POST /submit HTTP/1.1
Host 121.41.111.95
name=zxy&age=21

特點:

  • POST請求不能被緩存下來
  • POST請求不會保存在瀏覽器瀏覽記錄中
  • 以POST請求的URL無法保存爲瀏覽器書籤
  • POST請求沒有長度限制

實現代碼

下面將Java發送GET/POST請求封裝成HttpRequest類,可以直接使用。HttpRequest類代碼如下:

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;

//java項目www.fhadmin.org
public class HttpRequest {
    /**
     * 向指定URL發送GET方法的請求
     *
     * @param url
     *            發送請求的URL
     * @param param
     *            請求參數,請求參數應該是 name1=value1&name2=value2 的形式。
     * @return URL 所代表遠程資源的響應結果
     */
    public static String sendGet(String url, String param) {
        String result = "";
        BufferedReader in = null;
        try {
            String urlNameString = url + "?" + param;
            URL realUrl = new URL(urlNameString);
            // 打開和URL之間的連接
            URLConnection connection = realUrl.openConnection();
            // 設置通用的請求屬性
            connection.setRequestProperty("accept", "*/*");
            connection.setRequestProperty("connection", "Keep-Alive");
            connection.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 建立實際的連接
            connection.connect();
            // 獲取所有響應頭字段
            Map<String, List<String>> map = connection.getHeaderFields();
            // 遍歷所有的響應頭字段
            for (String key : map.keySet()) {
                System.out.println(key + "--->" + map.get(key));
            }
            // 定義 BufferedReader輸入流來讀取URL的響應
            in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
        } catch (Exception e) {
            System.out.println("發送GET請求出現異常!" + e);
            e.printStackTrace();
        }
        // 使用finally塊來關閉輸入流
        finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (Exception e2) {
                e2.printStackTrace();
            }
        }
        return result;
    }

    /**java項目www.fhadmin.org
     * 向指定 URL 發送POST方法的請求
     *
     * @param url
     *            發送請求的 URL
     * @param param
     *            請求參數,請求參數應該是 name1=value1&name2=value2 的形式。
     * @return 所代表遠程資源的響應結果
     */
    public static String sendPost(String url, String param) {
        PrintWriter out = null;
        BufferedReader in = null;
        String result = "";
        try {
            URL realUrl = new URL(url);
            // 打開和URL之間的連接
            URLConnection conn = realUrl.openConnection();
            // 設置通用的請求屬性
            conn.setRequestProperty("accept", "*/*");
            conn.setRequestProperty("connection", "Keep-Alive");
            conn.setRequestProperty("user-agent",
                    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
            // 發送POST請求必須設置如下兩行
            conn.setDoOutput(true);
            conn.setDoInput(true);
            // 獲取URLConnection對象對應的輸出流
            out = new PrintWriter(conn.getOutputStream());
            // 發送請求參數
            out.print(param);
            // flush輸出流的緩衝
            out.flush();
            // 定義BufferedReader輸入流來讀取URL的響應
            in = new BufferedReader(
                    new InputStreamReader(conn.getInputStream()));
            String line;
            while ((line = in.readLine()) != null) {
                result += line;
            }
        } catch (Exception e) {
            System.out.println("發送 POST 請求出現異常!"+e);
            e.printStackTrace();
        }
        //使用finally塊來關閉輸出流、輸入流
        finally{
            try{
                if(out!=null){
                    out.close();
                }
                if(in!=null){
                    in.close();
                }
            }
            catch(IOException ex){
                ex.printStackTrace();
            }
        }
        return result;
    }
}

實例演示

#app的路由地址"/show"即爲ajax中定義的url地址,採用POST、GET方法均可提交
@app.route("/show",methods=["GET", "POST"])
def show():
    #首先獲取前端傳入的name數據
    if request.method == "POST":
        name = request.form.get("name")
    if request.method == "GET":
        name = request.args.get("name")
    #創建Database類的對象sql,test爲需要訪問的數據庫名字 具體可見Database類的構造函數
    sql = Database("test")
    try:
        #執行sql語句 多說一句,f+字符串的形式,可以在字符串裏面以{}的形式加入變量名 結果保存在result數組中
        result = sql.execute(f"SELECT type FROM type WHERE name='{name}'")
    except Exception as e:
        return {'status':"error", 'message': "code error"}
    else:
        if not len(result) == 0:
            #這個result,我覺得也可以把它當成數據表,查詢的結果至多一個,result[0][0]返回數組中的第一行第一列
            return {'status':'success','message':result[0][0]}
        else:
            return "rbq"
            

下面 我們利用POST方法發起請求,Java代碼如下:

   	   //java項目www.fhadmin.org
       //創建發起http請求對象
       HttpRequest h = new HttpRequest();
       //向121.41.111.94/show發起POST請求,並傳入name參數
       String content = h.sendPost("http://121.41.111.94/show","name=張新宇");
       System.out.println(content);         

我們打印出content值,發現就是python中show()返回的json(在Java中,content被識別爲String類型,而不是json)
在這裏插入圖片描述
(在轉換過程中,不知道出什麼問題了,中文顯示了unicode編碼。但在後面的轉json格式後就沒有這樣的問題了)

字符串轉json

Java成功發起Http請求後,由於返回值是String類型,而不是原本python函數中的json格式。所以我們需要將字符串類型轉爲json格式,並通過鍵值對的形式得出message對應的值
首先在maven中引入jar包:

		  <dependency>
          <groupId>com.alibaba</groupId>
          <artifactId>fastjson</artifactId>
          <version>1.2.28</version>
          </dependency>
          

轉換代碼如下:

import com.alibaba.fastjson.JSONObject;
JSONObject jsonObject = JSONObject.parseObject(content);
System.out.println(jsonObject);
System.out.println(jsonObject.getString("message"));

運行結果:
在這裏插入圖片描述

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章