设计一个输入页面input.jsp(使用表单输入用户姓名,提交到OutPutServlet),一个Servlet程序 (OutPutServlet,获取表单里的用户姓名,转发到Welcome.jsp),一个输出显示页面 Welcome.jsp(获取Servlet程序转发过来的用户姓名,在页面中显示)。
时间: 2023-12-14 16:40:17 浏览: 174
jsp+servlet实现用户登陆
5星 · 资源好评率100%
以下是input.jsp页面的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>用户姓名输入页面</title>
</head>
<body>
<form action="OutPutServlet" method="post">
<label for="name">请输入您的姓名:</label>
<input type="text" id="name" name="name">
<input type="submit" value="提交">
</form>
</body>
</html>
```
以下是OutPutServlet的代码:
```java
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/OutPutServlet")
public class OutPutServlet extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String name = request.getParameter("name");
request.setAttribute("name", name);
request.getRequestDispatcher("Welcome.jsp").forward(request, response);
}
}
```
以下是Welcome.jsp的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>欢迎页面</title>
</head>
<body>
<h1>欢迎您,<%=request.getAttribute("name")%>!</h1>
</body>
</html>
```
在这个例子中,用户在input.jsp页面中输入姓名,并提交到OutPutServlet,OutPutServlet获取用户姓名并将其转发到Welcome.jsp页面,Welcome.jsp页面显示欢迎信息。
阅读全文