다른 페이지로 리디렉션(웹페이지 이동)하려면 요청 개체의 sendRedirect() 메서드를 사용하세요.
형식: request.sendRedirect("*.jsp");
과 전달
예: 사용자는 로그인 인터페이스에 로그인 이름과 비밀번호를 입력하고 입력이 맞거나 틀리면 다른 페이지로 이동합니다.
코드:
login.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>My JSP 'login.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <form action="receive.jsp" method="post"> 姓名:<input type="text" name="rdname"><br> 密码:<input type="text" name="rdpasswd"><br> <input type="submit" value="确定"> </form> </body> </html
receive.jsp
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>My JSP 'receive.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <% String name=request.getParameter("rdname"); String passwd=request.getParameter("rdpasswd"); if(name.equals("abcd")&&passwd.equals("123456")){ %> <jsp:forward page="correct.jsp"/> <%}else{%> <% response.sendRedirect("http://sohu.com");}%> </body> </html>
corright.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>My JSP 'correct.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <% String name=request.getParameter("rdname"); %> 欢迎,<%=name %>成功登陆! </body> </html>
실행 결과(올바른):
실행 결과(오류):
위 내용은 jsp에서 웹 페이지를 리디렉션하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!