在response.sendRedirect() - JSP中传递参数

时间:2012-12-24 10:41:53

标签: html jsp redirect httprequest

我是Web Technologies的新手。我正在尝试执行一个简单的程序,要求用户输入名称,如果页面重定向到另一个jsp文件"RedirectIfSuccessful.jsp"有效,如果页面无效,则会重定向到"RedirectIfFailed.jsp"。我使用response.sendRedirect()方法来执行此操作。

重定向工作正常。但是,我希望从RedirectIfSuccessfulRedirectIfFailed文件中访问用户在表单中输入的名称,以便在输入有效名称时向用户显示:欢迎,nameEntered以及消息失败时将nameEntered无效。请回去再试一次。

我尝试在两个文件中使用request.getParameter("name"),但它返回null值。我该怎么做才能访问它?

这是我的代码:这是RedirectingPage.jsp

 <%@ page 
    language="java" 
    import="java.util.regex.*"
    contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


<%  
    String name = request.getParameter("name");

    final String NAME_PATTERN = "^[a-zA-Z]{3,15}$";
    Pattern pattern = Pattern.compile(NAME_PATTERN);

    Matcher matcher = pattern.matcher(name);

    if (matcher.matches() == true){
        response.sendRedirect("RedirectIfSuccessful.jsp");

    } else {
        response.sendRedirect("RedirectIfFailed.jsp");
    }

%>

这是我的格式为FormSubmit.html

的HTML文件
<html>
    <head>
        <title> Welcome </title>
    </head>

    <body BGCOLOR="#FDF5E6">
        <p> <i> This program redirects to a page if the name entered is valid and to another one if name
            entered is invalid... This uses response.sendRedirect() </i> </p>

        <form action="RedirectingPage.jsp" method="post">
          <font size=6 face="Georgia"> <strong> Enter your name: </strong> </font> <input type="text" name="name"> <br> <br>
          <input type="submit" name="btn" value="Submit" >
        </form>
    </body>
</html>

这是成功的页面:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title> Successful Submit </title>
</head>

<body>

<font face="Georgia" size="6"> Hello, <% request.getParameter("name"); %> </font>

</body>
</html>

我希望你能提供帮助,我的问题很明确。谢谢:))

2 个答案:

答案 0 :(得分:20)

重定向包括向浏览器发送回复,说明“请转到以下网址:RedirectIfSuccessful.jsp”

当收到此响应时,浏览器会向RedirectIfSuccessful.jsp发送新请求,而不带任何参数。因此,从name获取参数RedirectIfSuccessful.jsp将返回null。

如果您想在重定向后访问该名称,则需要将重定向发送到RedirectIfSuccessful.jsp?name=<the name the user entered>

答案 1 :(得分:0)

要在其他页面中获取名称,请使用会话。

e.g。登录页面session.setAttribute("name",name);

要检索名称,请使用session.getAttribute("name")。您可以将它分配给这样的变量:

<% String name=(string)session.getAttribute("name");%>

成功!