JAVA-JSP内置对象之exception对象用来处理错误异常
相关资料:
《21天学通Java Web开发》
exception对象
1.exception对象用来处理错误异常。
2.如果要使用exception对象,必须指定page中的isErrorPage属性值为“true”。
ExceptionDemo1.jsp
1 <%@ page language="java" contentType="text/html;charset=gb2312" isErrorPage="true" %>
2 <%@page import="java.io.PrintStream"%>
3 <html>
4 <head>
5 <title>处理错误异常</title>
6 </head>
7 <body>
8 <%=exception%><br>
9 <%=exception.getMessage()%><br>
10 <%=exception.getLocalizedMessage()%><br>
11 <%
12 exception.printStackTrace(new java.io.PrintWriter(out));
13 %>
14 </body>
15 </html>
ExceptionDemo2.jsp
1 <%@ page language="java" contentType="text/html;charset=gb2312" errorPage="ExceptionDemo1.jsp" %>
2 <html>
3 <head>
4 <title>错误页面</title>
5 </head>
6 <body>
7 <%
8 int[] arr = {1,2,3};
9 out.println(arr[3]);
10 %>
11 </body>
12 </html>
作者:疯狂Delphi
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
欢迎关注我,一起进步!扫描下方二维码即可加我