1.用Myeclipse建立一个工程,将几个页面包含在一个JSP页面中。 如图所示。 2.灵活使用page指令中的errorPage属性与isErrorPage属性,实现一个出错页面以及处理出错页面。 3.使用到: “include包含指令” “page页指令” “HTML注释”:<!— comments --> “隐藏注释”:<%-- comments --%> “声明” <%! 声明; [声明; ] ... %> “表达式” <%= 表达式 %> “脚本段” <% 代码 %> 4. 实现页面注册 利用<jsp:include>设计注册页(注册信息包括学号、用户名、密码、密码确认、邮件。同时包含访问量统计的功能(利用application对象)) 利用JSP设计注册处理页(验证学号是否为10位,密码与密码确认是否相同,邮件地址是否正确)。 不正确跳回注册页面(利用<jsp:forward>,<jsp:param>),处理成功后跳转到注册成功页(利用response对象),并显示所输入的用户名(中文)与密码(利用session对象)。
时间: 2023-07-15 11:15:52 浏览: 107
几个jsp简单网站,用myeclipse开发的。具体的类等。详情看代码。
4星 · 用户满意度95%
很抱歉,作为一个语言模型,我无法实际创建一个Myeclipse工程并进行以上操作。但是,我可以为您提供一些基本思路和代码示例。
1. 建立工程与页面包含
在Myeclipse中建立一个Web工程,然后在WebContent目录下建立一个JSP页面,比如叫做main.jsp。在这个页面中使用include指令,将其他需要包含的页面引入即可。比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>主页面</title>
</head>
<body>
<jsp:include page="header.jsp" />
<jsp:include page="content.jsp" />
<jsp:include page="footer.jsp" />
</body>
</html>
```
2. 处理出错页面
在page指令中设置isErrorPage属性为true,表示这个页面是出错页面。然后在页面中使用exception对象获取异常信息,进行处理。比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" isErrorPage="true"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>出错页面</title>
</head>
<body>
<h1>出错了</h1>
<p>错误信息:<%= exception.getMessage() %></p>
</body>
</html>
```
然后在其他页面中使用page指令的errorPage属性,指向这个出错页面。比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>内容页面</title>
</head>
<body>
<%
try {
// 这里是可能会出现异常的代码
} catch (Exception e) {
// 出现异常后跳转到出错页面
response.sendRedirect("error.jsp");
}
%>
</body>
</html>
```
3. 其他常用指令和对象的使用
在JSP中还有一些常用的指令和对象,比如:
- include包含指令:用于将其他页面引入当前页面,比如上面的示例中使用了<jsp:include>。
- HTML注释和隐藏注释:用于在页面中添加注释,比如:
```
<!-- 这是HTML注释 -->
<%-- 这是隐藏注释 --%>
```
- 声明:用于定义一些全局变量或方法,比如:
```
<%! int count = 0; %>
```
- 表达式:用于在页面中输出某个变量或表达式的值,比如:
```
<p>访问量: <%= count %> </p>
```
- 脚本段:用于在页面中编写Java代码,比如:
```
<%
String username = request.getParameter("username");
%>
```
4. 实现页面注册
可以先设计一个注册页,包含一些输入框和提交按钮,比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册页面</title>
</head>
<body>
<h1>注册</h1>
<form action="register.jsp" method="post">
学号:<input type="text" name="student_id"><br>
用户名:<input type="text" name="username"><br>
密码:<input type="password" name="password"><br>
确认密码:<input type="password" name="confirm_password"><br>
邮件:<input type="text" name="email"><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
然后设计一个注册处理页,用于验证用户输入的信息是否合法,比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册处理页面</title>
</head>
<body>
<%
String studentId = request.getParameter("student_id");
String username = request.getParameter("username");
String password = request.getParameter("password");
String confirmPassword = request.getParameter("confirm_password");
String email = request.getParameter("email");
if (studentId.length() != 10) {
// 学号不合法,跳回注册页面
response.sendRedirect("register.jsp?error=1");
} else if (!password.equals(confirmPassword)) {
// 密码不一致,跳回注册页面
response.sendRedirect("register.jsp?error=2");
} else if (!email.matches("\\w+@\\w+\\.\\w+")) {
// 邮件地址不合法,跳回注册页面
response.sendRedirect("register.jsp?error=3");
} else {
// 注册成功,跳转到成功页面
session.setAttribute("username", username);
session.setAttribute("password", password);
count++; // 这里的count是上面提到的全局变量
response.sendRedirect("success.jsp");
}
%>
</body>
</html>
```
在注册页中使用<jsp:include>引入访问量统计的功能,比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册页面</title>
</head>
<body>
<h1>注册</h1>
<form action="register.jsp" method="post">
学号:<input type="text" name="student_id"><br>
用户名:<input type="text" name="username"><br>
密码:<input type="password" name="password"><br>
确认密码:<input type="password" name="confirm_password"><br>
邮件:<input type="text" name="email"><br>
<p>访问量:<%= application.getAttribute("count") %></p>
<input type="submit" value="提交">
</form>
</body>
</html>
```
在JSP的初始化方法中,初始化访问量计数器,比如:
```
<%!
int count;
%>
<%
count = 0;
application.setAttribute("count", count);
%>
```
最后设计一个注册成功页,显示所输入的用户名和密码,比如:
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册成功页面</title>
</head>
<body>
<h1>注册成功</h1>
<p>用户名: <%= session.getAttribute("username") %> </p>
<p>密码: <%= session.getAttribute("password") %> </p>
</body>
</html>
```
阅读全文