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

溫馨提示×

溫馨提示×

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

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

java如何實現響應重定向發送post請求

發布時間:2020-08-04 11:28:37 來源:億速云 閱讀:931 作者:小豬 欄目:編程語言

小編這次要給大家分享的是java如何實現響應重定向發送post請求,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

關于重定向我們用的比較多的還是redirect:重定向,默認發送的get請求。

return "redirect:/index";

但有時候請求地址必須為post請求,比如security登錄就只能接收post請求,下面來看一下如何后臺如何發送post請求響應重定向。

首先可以定義一個map,用于存放參數鍵值對

Map<String, String> parameter = new HashMap<String, String>();

添加參數方法

public void setParameter(String key, String value) {
  this.parameter.put(key, value);
}

發送請求代碼:

//url參數為請求地址
public void sendByPost(String url) throws IOException {
  this.response.setContentType("text/html");
  response.setCharacterEncoding("utf-8");
  response.setContentType("text/html;charset=utf-8");
  PrintWriter out = this.response.getWriter();
  out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
  out.println("<HTML>");
  out.println(" <HEAD>");
  out.println(" <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">");
  out.println(" <TITLE>loading</TITLE>");
  out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html charset=GBK\">\n");
  out.println(" </HEAD>");
  out.println(" <BODY>");
  out.println("<form name=\"submitForm\" action=\"" + url + "\" method=\"post\">");
  Iterator<String> it = this.parameter.keySet().iterator();
  while (it.hasNext()) {
    String key = it.next();
    out.println("<input type=\"hidden\" name=\"" + key + "\" value=\"" + this.parameter.get(key) + "\"/>");
  }
  out.println("</from>");
  out.println("<script>window.document.submitForm.submit();</script> ");
  out.println(" </BODY>");
  out.println("</HTML>");
  out.flush();
  out.close();
}

RedirectWithPost請求類全部代碼

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
 
/**
 * 用POST方式 重定向
 *
 * @author royFly
 */
public class RedirectWithPost {
  Map<String, String> parameter = new HashMap<String, String>();
  HttpServletResponse response;
 
  public RedirectWithPost(HttpServletResponse response) {
    this.response = response;
  }
 
  public void setParameter(String key, String value) {
    this.parameter.put(key, value);
  }
 
  public void sendByPost(String url) throws IOException {
    this.response.setContentType("text/html");
    response.setCharacterEncoding("utf-8");
    response.setContentType("text/html;charset=utf-8");
    PrintWriter out = this.response.getWriter();
    out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
    out.println("<HTML>");
    out.println(" <HEAD>");
    out.println(" <meta http-equiv=Content-Type content=\"text/html; charset=utf-8\">");
    out.println(" <TITLE>loading</TITLE>");
    out.println(" <meta http-equiv=\"Content-Type\" content=\"text/html charset=GBK\">\n");
    out.println(" </HEAD>");
    out.println(" <BODY>");
    out.println("<form name=\"submitForm\" action=\"" + url + "\" method=\"post\">");
    Iterator<String> it = this.parameter.keySet().iterator();
    while (it.hasNext()) {
      String key = it.next();
      out.println("<input type=\"hidden\" name=\"" + key + "\" value=\"" + this.parameter.get(key) + "\"/>");
    }
    out.println("</from>");
    out.println("<script>window.document.submitForm.submit();</script> ");
    out.println(" </BODY>");
    out.println("</HTML>");
    out.flush();
    out.close();
  }
}

實例化RedirectWithPost請求類

RedirectWithPost redirectWithPost = new RedirectWithPost(response);
//redirectUrl請求地址
String redirectUrl = "/login";

添加請求參數

redirectWithPost.setParameter("username", nickname);
redirectWithPost.setParameter("password", openid);

調用方法,發送請求

redirectWithPost.sendByPost(redirectUrl);

看完這篇關于java如何實現響應重定向發送post請求的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

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

AI

彰武县| 黄龙县| 根河市| 武冈市| 亚东县| 苍溪县| 平度市| 新疆| 武乡县| 绿春县| 垦利县| 略阳县| 祁门县| 蓬安县| 中西区| 鄂伦春自治旗| 遂平县| 马龙县| 东丽区| 汤原县| 理塘县| 横山县| 白朗县| 玉龙| 抚州市| 正安县| 德州市| 崇仁县| 读书| 石阡县| 无锡市| 正蓝旗| 凤冈县| 金湖县| 阿图什市| 罗江县| 山东省| 广平县| 安龙县| 伊川县| 陇川县|